forked from Arackulele/GrimoraMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to Ankh Guards, sigil fixes, Start Conditions
- Loading branch information
1 parent
d11b4c8
commit 78ad6c2
Showing
12 changed files
with
571 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using DiskCardGame; | ||
|
||
namespace GrimoraMod; | ||
|
||
public partial class GrimoraPlugin | ||
{ | ||
public const string NameObelisk = $"{GUID}_Obelisk"; | ||
|
||
private void Add_Card_Obelisk() | ||
{ | ||
CardBuilder.Builder | ||
.SetAbilities(Ability.MadeOfStone ) | ||
.SetBaseAttackAndHealth(0, 1) | ||
.SetNames(NameObelisk, "Obelisk") | ||
.SetTraits(Trait.Structure, Trait.Terrain) | ||
.Build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using DiskCardGame; | ||
|
||
namespace GrimoraMod; | ||
|
||
public partial class GrimoraPlugin | ||
{ | ||
public const string NameVoodooDoll = $"{GUID}_Voodoo_Doll"; | ||
|
||
private void Add_Card_Voodoo_Doll() | ||
{ | ||
CardBuilder.Builder | ||
.SetBaseAttackAndHealth(0, 2) | ||
.SetNames(NameVoodooDoll, "Voodoo Doll") | ||
.SetTraits(Trait.Structure, Trait.Terrain) | ||
.SetAbilities(Haunter.ability, InvertedStrike.ability) | ||
.Build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.