Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
Merge pull request #5 from jcbhmr/addingSandyLandsCreatures
Browse files Browse the repository at this point in the history
Added sandylands creatures
  • Loading branch information
TaLgnd27 authored Apr 30, 2024
2 parents 0ff694b + a9ff801 commit 329ddcb
Showing 1 changed file with 150 additions and 0 deletions.
150 changes: 150 additions & 0 deletions src/engine/CardMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,156 @@ put(
9,
),
);

//=====================================================================================================================================================
// SANDYLANDS
//=====================================================================================================================================================

put(
"Beach Mum",
new Creature("Beach Mum", "", 2, LandscapeType.Desert, 9, 11)
);

put(
"Black Cat",
new Creature("Black Cat", "", 5, LandscapeType.Desert, 15, 35)
);

put(
"Burning Hand",
new Creature("Burning Hand", "", 1, LandscapeType.Desert, 5, 2)
);

put(
"Cactus Thug",
new Creature("Cactus Thug", "", 5, LandscapeType.Desert, 25, 12)
);

put(
"Count Cactus",
new Creature("Count Cactus", "", 5, LandscapeType.Desert, 5, 48)
);

put(
"Fummy",
new Creature("Fummy", "", 4, LandscapeType.Desert, 4, 24)
);

put(
"Giant Mummy Hand",
new Creature("Giant Mummy Hand", "", 4, LandscapeType.Desert, 9, 29)
);

put(
"Green Cactaball",
new Creature("Greem Cactaball", "", 1, LandscapeType.Desert, 4, 3)
);

put(
"Green Party Ogre",
new Creature("Green Party Ogre", "", 0, LandscapeType.Desert, 11, 19)
);

put(
"Lady Mary",
new Creature("Lady Mary", "", 4, LandscapeType.Desert, 18, 20)
);

put(
"Lime Slimey",
new Creature("Lime Slimey", "", 2, LandscapeType.Desert, 8, 8)
);

put(
"Lost Golem",
new Creature("Lost Golem", "", 5, LandscapeType.Desert, 10, 36)
);

put(
"Mayonaise Angel",
new Creature("Mayonaise Angel", "", 2, LandscapeType.Desert, 4, 12)
);

put(
"Ms. Mummy",
new Creature("Ms. Mummy", "", 1, LandscapeType.Desert, 3, 6)
);

put(
"Mud Angel",
new Creature("Mud Angel", "", 3, LandscapeType.Desert, 9, 21)
);

put(
"Pieclops",
new Creature("Pieclops", "", 5, LandscapeType.Desert, 20, 25)
);

put(
"Prickle",
new Creature("Prickle", "", 3, LandscapeType.Desert, 9, 18)
);

put(
"Sandbacho",
new Creature("Sandbacho", "", 2, LandscapeType.Desert, 11, 10)
);

put(
"Sand Angel",
new Creature("Sand Angel", "", 1, LandscapeType.Desert, 2, 6)
);

put(
"Sand Eyebat",
new Creature("Sand Eyebat", "", 1, LandscapeType.Desert, 4, 4)
);

put(
"Sand Jackal",
new Creature("Sand Jackal", "", 3, LandscapeType.Desert, 6, 21)
);

put(
"Sand Knight",
new Creature("Sand Knight", "", 4, LandscapeType.Desert, 20, 20)
);

put(
"Sandasaurus Rex",
new Creature("Sandasaurus Rex", "", 0, LandscapeType.Desert, 14, 16)
);

put(
"Sandfoot",
new Creature("Sandfoot", "", 3, LandscapeType.Desert, 10, 17)
);

put(
"Snadsnake",
new Creature("Sandsnake", "", 2, LandscapeType.Desert, 12, 7)
);

put(
"Sandwitch",
new Creature("Sandwitch", "", 4, LandscapeType.Desert, 25, 10)
);

put(
"Sandy",
new Creature("Sandy", "", 5, LandscapeType.Desert, 28, 18)
);

put(
"Wall of Chocolate",
new Creature("Wall of Chocolate", "", 3, LandscapeType.Desert, 5, 20)
);

put(
"Wall of Sand",
new Creature("Wall of Sand", "", 3, LandscapeType.Desert, 0, 26)
)

//=====================================================================================================================================================
// BUILDINGS
//=====================================================================================================================================================
Expand Down

0 comments on commit 329ddcb

Please sign in to comment.