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

Commit

Permalink
Save
Browse files Browse the repository at this point in the history
  • Loading branch information
browntj16 committed May 7, 2024
1 parent 437eeb7 commit 14d1509
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file added src/assets/bog-bum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/swamp-dragon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/engine/CardMap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ class Deck {
//Made this card more for testing or ending the game quickly if we have to.
put(
"Swamp Dragon",
new Creature("Swamp Dragon", "", 2, LandscapeType.Swamp, 25, 8, ""),
new Creature("Swamp Dragon", "", 2, LandscapeType.Swamp, 25, 8, "src/assets/swamp-dragon.png"),
);
put(
"Dark Angel",
new Creature("Dark Angel", "", 1, LandscapeType.Swamp, 10, 5, ""),
new Creature("Dark Angel", "", 1, LandscapeType.Swamp, 10, 5, "src/assets/dark-angel.png"),
);

put("Bog Bum", new Creature("Bog Bum", "", 1, LandscapeType.Swamp, 2, 6, ""));
put("Bog Bum", new Creature("Bog Bum", "", 1, LandscapeType.Swamp, 2, 6, "src/assets/bog-bum.png"));

// Not sure about this one. This card's ability is not really functional right now.
put(
Expand Down

0 comments on commit 14d1509

Please sign in to comment.