mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
add Gigadrowse (from Guildpact) using the new Replicate keyword
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -2647,6 +2647,7 @@ res/cardsfolder/gift_of_estates.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/gift_of_granite.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/gift_of_the_deity.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/gift_of_the_woods.txt svneol=native#text/plain
|
||||
res/cardsfolder/gigadrowse.txt svneol=native#text/plain
|
||||
res/cardsfolder/gigantomancer.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/gigapede.txt -text svneol=native#text/plain
|
||||
res/cardsfolder/gilded_lotus.txt -text svneol=native#text/plain
|
||||
|
||||
10
res/cardsfolder/gigadrowse.txt
Normal file
10
res/cardsfolder/gigadrowse.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Name:Gigadrowse
|
||||
ManaCost:U
|
||||
Types:Instant
|
||||
Text:no text
|
||||
A:SP$Tap | Cost$ U | ValidTgts$ Permanent | TgtPromp$ Select target permanent | SpellDescription$ Tap target permanent.
|
||||
K:Replicate U
|
||||
SVar:Rarity:Common
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/gigadrowse.jpg
|
||||
SetInfo:GPT|Common|http://magiccards.info/scans/en/gp/26.jpg
|
||||
End
|
||||
@@ -929,7 +929,6 @@ public class Card extends MyObservable {
|
||||
public String getNonAbilityText() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
ArrayList<String> keyword = getHiddenExtrinsicKeyword();
|
||||
if(name.equals("Gigadrowse")) System.out.println("Keywords for nonability text for "+this.getName()+": "+keyword);
|
||||
|
||||
sb.append(keywordsToText(keyword));
|
||||
|
||||
@@ -938,7 +937,6 @@ public class Card extends MyObservable {
|
||||
|
||||
// convert a keyword list to the String that should be displayed ingame
|
||||
public String keywordsToText(ArrayList<String> keyword) {
|
||||
if(name.equals("Gigadrowse")) System.out.println("Keywords for "+this.getName()+": "+keyword);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
StringBuilder sbLong = new StringBuilder();
|
||||
StringBuilder sbMana = new StringBuilder();
|
||||
|
||||
Reference in New Issue
Block a user