Skip to content

Commit

Permalink
add muluislands
Browse files Browse the repository at this point in the history
  • Loading branch information
Bims-sh committed Oct 20, 2024
1 parent 1fc5b09 commit b32a9f4
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Data/RegionList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class RegionList
},
"TensaTown" => new List<RegionHelper.Region?>
{
TensaTownRegions.TeamASafeZone,
TensaTownRegions.TeamBSafeZone
TensatownRegions.TeamASafeZone,
TensatownRegions.TeamBSafeZone
},
_ => new List<RegionHelper.Region?>()
};
Expand Down
51 changes: 51 additions & 0 deletions Data/Regions/MultuislandsRegions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
using System.Numerics;
using BattleBitMinigames.Handlers;

namespace BattleBitMinigames.Data.Regions;

public class MultuislandsRegions
{
// US safe zone
public static readonly RegionHelper.Region TeamASafeZone = new (
"US Safe Zone",
"You've entered the US Safe Zone. Please leave immediately.",
new List<Vector2>
{
new(461, 427),
new(749, -954),
new(-954, -954),
new(-954, -215),
new(-772, -265),
new(-735, -280),
new(-666, -265),
new(-542, -282),
new(-491, -330),
new(58, -400),
new(277,-365)
}
);

// RU safe zone region
public static readonly RegionHelper.Region? TeamBSafeZone = new (
"RU Safe Zone",
"You've entered the RU Safe Zone. Please leave immediately.",
new List<Vector2>
{
new (-476, 954),
new (-394, 664),
new (-383, 530),
new (-259, 371),
new (36, 415),
new (206, 488),
new (388, 522),
new (443, 511),
new (487, 516),
new (533, 470),
new (578, 376),
new (690, 285),
new (725, 285),
new (954, 334),
new (954, 954)
}
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace BattleBitMinigames.Data.Regions;

public class TensaTownRegions
public class TensatownRegions
{
// US safe zone
public static readonly RegionHelper.Region TeamASafeZone = new (
Expand Down
4 changes: 3 additions & 1 deletion Helpers/RoleHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ public class RoleHelper
76561198173566107, // Julgers
76561198051546518, // Terminal
76561199056414354, // Pom
76561198833659544 // Silly
76561198833659544, // Silly
76561198147887556, // Larry

};

public static List<ulong> Moderators = new() { };
Expand Down

0 comments on commit b32a9f4

Please sign in to comment.