mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
add missing set images, fix non-utf8 char
This commit is contained in:
parent
5d6a6117bf
commit
770bc451c9
3 changed files with 4 additions and 3 deletions
|
@ -16,7 +16,7 @@ public class GathererSets implements Iterable<DownloadJob> {
|
||||||
private final static File DEFAULT_OUT_DIR = new File("plugins" + File.separator + "images" + SETS_PATH);
|
private final static File DEFAULT_OUT_DIR = new File("plugins" + File.separator + "images" + SETS_PATH);
|
||||||
private static File outDir = DEFAULT_OUT_DIR;
|
private static File outDir = DEFAULT_OUT_DIR;
|
||||||
|
|
||||||
private static final String[] symbols = {"10E", "HOP", "TMP", "INV", "PLS", "APC", "MRD", "DST", "5DN", "CHK", "BOK", "SOK", "RAV", "GPT", "DIS", "TSP", "TSB", "PLC", "FUT", "LRW", "MOR", "SHM", "EVE", "USG"};
|
private static final String[] symbols = {"10E", "HOP", "TMP", "INV", "PLS", "APC", "MRD", "DST", "5DN", "CHK", "BOK", "SOK", "RAV", "GPT", "DIS", "TSP", "TSB", "PLC", "FUT", "LRW", "MOR", "SHM", "EVE", "USG", "9ED", "8ED", "ONS"};
|
||||||
private static final String[] withMythics = {"M10", "M11", "M12", "DDF", "ALA", "CFX", "ARB", "ZEN", "WWK", "ROE", "SOM", "MBS", "NPH", "ISD", "DKA"};
|
private static final String[] withMythics = {"M10", "M11", "M12", "DDF", "ALA", "CFX", "ARB", "ZEN", "WWK", "ROE", "SOM", "MBS", "NPH", "ISD", "DKA"};
|
||||||
private static final HashMap<String, String> symbolsReplacements = new HashMap<String, String>();
|
private static final HashMap<String, String> symbolsReplacements = new HashMap<String, String>();
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class ThrabenDoomsayer extends CardImpl<ThrabenDoomsayer> {
|
||||||
|
|
||||||
// {tap}: Put a 1/1 white Human creature token onto the battlefield.
|
// {tap}: Put a 1/1 white Human creature token onto the battlefield.
|
||||||
this.addAbility(new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new CreateTokenEffect(new HumanToken()), new TapSourceCost()));
|
this.addAbility(new SimpleActivatedAbility(Constants.Zone.BATTLEFIELD, new CreateTokenEffect(new HumanToken()), new TapSourceCost()));
|
||||||
// Fateful hour — As long as you have 5 or less life, other creatures you control get +2/+2.
|
// Fateful hour - As long as you have 5 or less life, other creatures you control get +2/+2.
|
||||||
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new ConditionalContinousEffect(new BoostControlledEffect(2, 2, Constants.Duration.WhileOnBattlefield, false),
|
this.addAbility(new SimpleStaticAbility(Constants.Zone.BATTLEFIELD, new ConditionalContinousEffect(new BoostControlledEffect(2, 2, Constants.Duration.WhileOnBattlefield, false),
|
||||||
FatefulHourCondition.getInstance(), "As long as you have 5 or less life, other creatures you control get +2/+2")));
|
FatefulHourCondition.getInstance(), "As long as you have 5 or less life, other creatures you control get +2/+2")));
|
||||||
}
|
}
|
||||||
|
|
1
pom.xml
1
pom.xml
|
@ -32,6 +32,7 @@
|
||||||
<module>Mage.Server.Plugins</module>
|
<module>Mage.Server.Plugins</module>
|
||||||
<module>Mage.Server.Console</module>
|
<module>Mage.Server.Console</module>
|
||||||
<module>Mage.Tests</module>
|
<module>Mage.Tests</module>
|
||||||
|
<module>mage.updater.client</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
|
|
Loading…
Reference in a new issue