mirror of
https://github.com/correl/mage.git
synced 2025-01-11 11:05:23 +00:00
[BOK] Fixed some wrong rarities.
This commit is contained in:
parent
26b5a277c4
commit
6ca42f801e
5 changed files with 10 additions and 4 deletions
|
@ -49,7 +49,7 @@ import mage.players.Player;
|
|||
public class AuraBarbs extends CardImpl {
|
||||
|
||||
public AuraBarbs(UUID ownerId) {
|
||||
super(ownerId, 94, "Aura Barbs", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{R}");
|
||||
super(ownerId, 94, "Aura Barbs", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{2}{R}");
|
||||
this.expansionSetCode = "BOK";
|
||||
this.subtype.add("Arcane");
|
||||
this.color.setRed(true);
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class BlessingOfLeeches extends CardImpl {
|
||||
|
||||
public BlessingOfLeeches(UUID ownerId) {
|
||||
super(ownerId, 62, "Blessing of Leeches", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}");
|
||||
super(ownerId, 62, "Blessing of Leeches", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}");
|
||||
this.expansionSetCode = "BOK";
|
||||
this.color.setBlack(true);
|
||||
this.subtype.add("Aura");
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.players.Player;
|
|||
public class KamiOfTheHonoredDead extends CardImpl {
|
||||
|
||||
public KamiOfTheHonoredDead(UUID ownerId) {
|
||||
super(ownerId, 12, "Kami of the Honored Dead", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{5}{W}{W}");
|
||||
super(ownerId, 12, "Kami of the Honored Dead", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{5}{W}{W}");
|
||||
this.expansionSetCode = "BOK";
|
||||
this.subtype.add("Spirit");
|
||||
this.color.setWhite(true);
|
||||
|
|
|
@ -51,7 +51,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class UncheckedGrowth extends CardImpl {
|
||||
|
||||
public UncheckedGrowth(UUID ownerId) {
|
||||
super(ownerId, 148, "Unchecked Growth", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{2}{G}");
|
||||
super(ownerId, 148, "Unchecked Growth", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{2}{G}");
|
||||
this.expansionSetCode = "BOK";
|
||||
this.subtype.add("Arcane");
|
||||
this.color.setGreen(true);
|
||||
|
|
|
@ -59,6 +59,12 @@ git log b76102b0cdb911c7217fc2f510b4de86651f91d2..HEAD --diff-filter=A --name-st
|
|||
since 1.3.0-2014-10-05
|
||||
git log 8121849a185b913ef2de59fff2f3d9a6c9b3a613..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
|
||||
since 1.3.0-2014-10-18v1
|
||||
git log 58bbe60c724c7940996cf33db690d5eb1abfce0a..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
since 1.3.0-2014-10-18v2 (2014-10-20)
|
||||
git log 974cb4435bb826769b935aaffc8335eeaa83d53f..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
since 1.3.0-2014-10-18v3 (2014-10-25)
|
||||
git log 26b5a277c4404a93e3b41ba477c5ec58dedcf826..HEAD --diff-filter=A --name-status | sed -ne "s/^A[^u]Mage.Sets\/src\/mage\/sets\///p" | sort > added_cards.txt
|
||||
|
||||
3. Copy added_cards.txt to trunk\Utils folder
|
||||
4. Run script:
|
||||
|
|
Loading…
Reference in a new issue