diff --git a/forge-gui/res/cardsfolder/upcoming/emmara_soul_of_the_accord.txt b/forge-gui/res/cardsfolder/upcoming/emmara_soul_of_the_accord.txt index c9a7e4e0cc0..44da9af66e5 100644 --- a/forge-gui/res/cardsfolder/upcoming/emmara_soul_of_the_accord.txt +++ b/forge-gui/res/cardsfolder/upcoming/emmara_soul_of_the_accord.txt @@ -3,5 +3,5 @@ ManaCost:G W Types:Legendary Creature Elf Cleric PT:2/2 T:Mode$ Taps | ValidCard$ Card.Self | Execute$ TrigToken | TriggerDescription$ Whenever CARDNAME becomes tapped, create a 1/1 white Soldier creature token with lifelink. -SVar:TrigToken:DB$ Token | TokenAmount$ 1 | TokenName$ Soldier | TokenTypes$ Creature,Soldier | TokenOwner$ You | TokenColors$ White | TokenPower$ 1 | TokenToughness$ 1 | TokenKeywords$ Lifelink | TokenImage$ w 1 1 soldier grn +SVar:TrigToken:DB$ Token | TokenAmount$ 1 | TokenScript$ w_1_1_soldier_lifelink Oracle:Whenever Emmara, Soul of the Accord becomes tapped, create a 1/1 white Soldier creature token with lifelink. diff --git a/forge-gui/res/cardsfolder/upcoming/murmuring_mystic.txt b/forge-gui/res/cardsfolder/upcoming/murmuring_mystic.txt index ee477f90569..e564cee9162 100644 --- a/forge-gui/res/cardsfolder/upcoming/murmuring_mystic.txt +++ b/forge-gui/res/cardsfolder/upcoming/murmuring_mystic.txt @@ -3,6 +3,6 @@ ManaCost:3 U Types:Creature Human Wizard PT:1/5 T:Mode$ SpellCast | ValidCard$ Instant,Sorcery | ValidActivatingPlayer$ You | TriggerZones$ Battlefield | Execute$ TrigToken | TriggerDescription$ Whenever you cast an instant or sorcery spell, create a 1/1 blue Bird Illusion creature token with flying. -SVar:TrigToken:DB$Token | TokenAmount$ 1 | TokenName$ Bird | TokenTypes$ Creature,Bird,Illusion | TokenOwner$ You | TokenColors$ Blue | TokenPower$ 1 | TokenToughness$ 1 | TokenKeywords$ Flying | TokenImage$ u 1 1 bird grn +SVar:TrigToken:DB$Token | TokenAmount$ 1 | TokenScript$ u_1_1_bird_illusion_flying SVar:BuffedBy:Instant,Sorcery Oracle:Whenever you cast an instant or sorcery spell, create a 1/1 blue Bird Illusion creature token with flying. diff --git a/forge-gui/res/editions/Guilds of Ravnica.txt b/forge-gui/res/editions/Guilds of Ravnica.txt index 0b6fe9a53b0..4840be19f64 100644 --- a/forge-gui/res/editions/Guilds of Ravnica.txt +++ b/forge-gui/res/editions/Guilds of Ravnica.txt @@ -51,4 +51,8 @@ Type=Expansion 269 M Vraska, Regal Gorgon 271 U Attendant of Vraska 272 R Vraska's Stoneglare -273 M Impervious Greatwurm \ No newline at end of file +273 M Impervious Greatwurm + +[tokens] +w_1_1_soldier_lifelink +u_1_1_bird_illusion_flying \ No newline at end of file diff --git a/forge-gui/res/tokenscripts/u_1_1_bird_illusion_flying.txt b/forge-gui/res/tokenscripts/u_1_1_bird_illusion_flying.txt new file mode 100644 index 00000000000..c9a001ee43c --- /dev/null +++ b/forge-gui/res/tokenscripts/u_1_1_bird_illusion_flying.txt @@ -0,0 +1,7 @@ +Name:Bird Illusion +ManaCost:no cost +Types:Creature Bird Illusion +Colors:blue +PT:1/1 +K:Flying +Oracle:Flying \ No newline at end of file diff --git a/forge-gui/res/tokenscripts/w_1_1_soldier_lifelink.txt b/forge-gui/res/tokenscripts/w_1_1_soldier_lifelink.txt new file mode 100644 index 00000000000..823cb42a3a8 --- /dev/null +++ b/forge-gui/res/tokenscripts/w_1_1_soldier_lifelink.txt @@ -0,0 +1,7 @@ +Name:Soldier +ManaCost:no cost +Types:Creature Soldier +Colors:white +PT:1/1 +K:Lifelink +Oracle:Lifelink \ No newline at end of file