Page 8 of 119

Re: Card Requests

PostPosted: 13 Mar 2010, 16:16
by jim
Brave the Elements is on the card request list, and it's pretty easy to implement. I did it by modifying the same block of code in CardFactory.java that implements Burst of Speed, Nature's Cloak, and several others. I've tested it, and it seems to be working fine. Unfortunately, the changes take place over a set of about 250 lines -- more than I'd like to post in the forum. Is there anyone to whom I could send a block of code to paste in?

Re: Card Requests

PostPosted: 13 Mar 2010, 16:23
by apthaven
jim wrote:Brave the Elements is on the card request list, and it's pretty easy to implement. I did it by modifying the same block of code in CardFactory.java that implements Burst of Speed, Nature's Cloak, and several others. I've tested it, and it seems to be working fine. Unfortunately, the changes take place over a set of about 250 lines -- more than I'd like to post in the forum. Is there anyone to whom I could send a block of code to paste in?
Try sending a message to either Zerker, Chris, Rob, or Dennis. They're the ones who do most of the work here :D

Re: Card Requests

PostPosted: 13 Mar 2010, 17:53
by Chris H.
jim wrote:Brave the Elements is on the card request list, and it's pretty easy to implement. I did it by modifying the same block of code in CardFactory.java that implements Burst of Speed, Nature's Cloak, and several others. I've tested it, and it seems to be working fine. Unfortunately, the changes take place over a set of about 250 lines -- more than I'd like to post in the forum. Is there anyone to whom I could send a block of code to paste in?
`
The Forge project and it's source code was placed on google code (SVN) a number of months ago. This would allow you to update your local copy to the most recent revision. It would also allow you to merge in your changes.

We have a message forum for Forge development at Developer's Corner and there is information there in reference to the SVN.

Dennis can provide you with the commit status if you are interested. :)

Re: Card Requests

PostPosted: 13 Mar 2010, 18:24
by DennisBergkamp
Yeah, just pm me your email address, and I'll give you committer privileges.

Re: Card Requests

PostPosted: 14 Mar 2010, 23:06
by lm01
psillusionist wrote:Given that X spells and effects are coming soon (according to that other thread), I'd like to request for:

Death Cloud
Decree of Justice
Demonfire
Channel
Fireball
I've added what was missing.
(I never really understood ppl asking for Blaze or Fireball with things like Roling Thunder, Banefire, Demonfire)

Re: Card Requests

PostPosted: 14 Mar 2010, 23:06
by lm01
psillusionist wrote:Given that X spells and effects are coming soon (according to that other thread), I'd like to request for:

Death Cloud
Decree of Justice
Demonfire
Channel
Fireball
Yes, Blaze and Death Grasp for instance are already done, the others might take a bit more because of the little tricks.
I've added what was missing to the list.
(I never really understood ppl asking for Blaze or Fireball with things like Kaervek's Torch, Rolling Thunder, Banefire, Demonfire... heck, even instants like Volcanic Geyser and the new awesome Comet Storm... mind you, Fireball has higher score on mtg than most of these :P)

Re: Card Requests

PostPosted: 15 Mar 2010, 08:07
by apthaven
The enchantment Worship is almost similar to Ali from Cairo which we already have.

Landfall:
Hagra Crocodile / Hedron Rover / Territorial Baloth / Windrider Eel - all similar to Steppe Lynx or Plated Geopede (should the Lynx be implemented in the future)

Fledgling Griffin / Geyser Glider - cards that gain flying.

Grazing Gladehart - lifegain.

Drelnoch - Similar to Saprazzan Heir.

Re: Card Requests

PostPosted: 15 Mar 2010, 14:12
by lm01
Regarding apthaven post on Landfall

Forge already has a similar creatures:
Baru, Fist of Krosa
Rampaging Baloths

Re: Card Requests

PostPosted: 15 Mar 2010, 21:22
by Ichigo1100
I'm trying to test a couple of type 2 decks the first is jund and the second is my own random deck could you add the following cards? Thanks in advance (btw I understand that most of these are new and so you just haven't had a chance to add them yet and others involve turn manipulation which might not be implemented yet)

For Jund:
The M10 lands (Rootbound Crag, Dragonskull Summit, Glacial Fortress ect.)
Rampant Growth
Sprouting Thrinax
Sorin Markov (even just his first 2 abilities would be fine)

For my other Deck:
Brave the Elements
Luminarch Ascension
Magosi, the Waterveil (this one I'll be patient on I understand that turn Manipulation is complicated)
Perimeter Captain
Rest for the Weary
Sejiri Merfolk

Re: Card Requests

PostPosted: 16 Mar 2010, 15:15
by lm01
Ichigo1100 wrote:For Jund:
The M10 lands (Rootbound Crag, Dragonskull Summit, Glacial Fortress ect.)
Rampant Growth
Sprouting Thrinax
Sorin Markov (even just his first 2 abilities would be fine)

For my other Deck:
Brave the Elements
Luminarch Ascension
Magosi, the Waterveil (this one I'll be patient on I understand that turn Manipulation is complicated)
Perimeter Captain
Rest for the Weary
Sejiri Merfolk
I'll add the missing cards on the list.
Btw, you should have checked the Deck Editor on forge. Sprouting Thrinax is already done even on older versions. Maybe you only had 1 of the filter colors picked (you have to have all 3 colors).
The M10 "dual" lands weren't done yet probably because you have all the real dual lands (which are better and can do the same effect as all others)
They will be done, but I guess there are other priorities that are essential to specific decks.

Magosi, the Waterveil - Actually we have Time Walk, Time Vault, Time Warp :P
Latest development was focused on permanent control/ownership (which is very tricky) and X costs.

Noticed you're new here, you can check the current requested cards on "to do list" on the link in my signature, it's often upgraded and already mentions some new stuff on the recent unofficial beta.

Re: Card Requests

PostPosted: 16 Mar 2010, 19:19
by Rob Cashwalker
I've just taken care of the M10 duals:

CardFactory:
Code: Select all
        if (hasKeyword(card, "CARDNAME enters the battlefield tapped unless you control a ") != -1)
        {
           int n = hasKeyword(card, "CARDNAME enters the battlefield tapped unless you control a ");
           String parse = card.getKeyword().get(n).toString();
           
           final String types[] = parse.substring(60, parse.length() - 1).split(" or a ");
           
           card.addComesIntoPlayCommand(new Command()
           {
              private static final long serialVersionUID = 403635232455049834L;
              
              public void execute()
              {
                 PlayerZone pzICtrl = AllZone.getZone(Constant.Zone.Play, card.getOwner());
                 CardList clICtrl = new CardList(pzICtrl.getCards());
                 
                 boolean fnd = false;
                 
                 for (int i = 0; i < clICtrl.size(); i++)
                 {
                    Card c = clICtrl.get(i);
                    for (int j = 0; j < types.length; j++)
                       if (c.getType().contains(types[j]))
                          fnd = true;
                 }
                 
                 if (!fnd)
                    card.tap();
              }
           });
        }
Code: Select all
Dragonskull Summit
no cost
Land
no text
CARDNAME enters the battlefield tapped unless you control a Swamp or a Mountain.
tap: add B
tap: add R

Re: Card Requests

PostPosted: 16 Mar 2010, 21:07
by DennisBergkamp
Nice! Thanks Rob :)

Re: Card Requests

PostPosted: 18 Mar 2010, 17:42
by Corwin72

Re: Card Requests

PostPosted: 19 Mar 2010, 15:59
by lm01
If you're working on lands can you make some produce all kind?
Gemstone Mine, City of Brass, Undiscovered Paradise, etc
The best alternative is Shimmering Grotto, which isn't that good.
BTW, I noticed AI doesn't "break" fetch lands, it treat them as if he didn't have lands.
Sometime has 3 fetch lands in play, and discards cards, that he had to fetch to cast.

Cards request with resemblance:
Frantic Search (untaps like Cloud of Faeries)
Buried Alive (like Entomb x3)
Nature's Spiral (like Regrowth)
Revive (like Regrowth)
Reclaim (Regrowth to library)
False Mourning (Regrowth to library)
Natural Order (creature Tinker)
Plow Under (land Temporal Spring)

Others:
Land Grant
Biorhythm

Re: Card Requests

PostPosted: 19 Mar 2010, 16:33
by Chris H.
jim wrote:Brave the Elements is on the card request list, and it's pretty easy to implement. I did it by modifying the same block of code in CardFactory.java that implements Burst of Speed, Nature's Cloak, and several others. I've tested it, and it seems to be working fine. Unfortunately, the changes take place over a set of about 250 lines -- more than I'd like to post in the forum. Is there anyone to whom I could send a block of code to paste in?
`
Thank you for the card, Jim. I see that you now have access to our SVN. Nice to have you with us. :)