Page 13 of 14

Re: Keywords recognized by Forge

PostPosted: 16 Mar 2011, 13:12
by Chris H.
slapshot5 wrote:The following keywords have been retired:
Whenever CARDNAME blocks a creature, destroy that creature at end of combat
Whenever CARDNAME becomes blocked by a creature, destroy that creature at end of combat
`
Thank you.

I added these retired keywords to the deprecated keyword listing.

Re: Keywords recognized by Forge

PostPosted: 16 Mar 2011, 16:10
by slapshot5
The keyword Whenever CARDNAME deals combat damage to a creature, destroy that creature has been retired.

Re: Keywords recognized by Forge

PostPosted: 16 Mar 2011, 17:59
by Chris H.
slapshot5 wrote:The keyword Whenever CARDNAME deals combat damage to a creature, destroy that creature has been retired.
`
I added this retired keyword to the deprecated keyword listing. Thank you.

Re: Keywords recognized by Forge

PostPosted: 19 Mar 2011, 16:16
by Chris H.
Added the new keywords:

Protection from Gorgons

and

When you control no enchantments, sacrifice CARDNAME.

Re: Keywords recognized by Forge

PostPosted: 11 Apr 2011, 17:54
by Chris H.
Added these older missing keywords:

CARDNAME can attack as though it didn't have defender.

and

When there are no creatures on the battlefield, sacrifice CARDNAME.

Re: Keywords recognized by Forge

PostPosted: 13 Apr 2011, 17:11
by Chris H.
Added the new (AB/DB/SP) Animate AF sa to the AbilityFactory list.

Re: Keywords recognized by Forge

PostPosted: 28 Apr 2011, 12:30
by Chris H.
Added the new (AB/DB/SP) Effect AF sa to the AbilityFactory list.

Re: Keywords recognized by Forge

PostPosted: 01 May 2011, 00:35
by Chris H.
Added the new keywords:


Damage that would reduce your life total to less than 1 reduces it to 1 instead.

You can't win the game.

You don't lose the game for having 0 or less life.

Your opponents can't lose the game.

Re: Keywords recognized by Forge

PostPosted: 01 May 2011, 00:46
by Chris H.
Added the new (AB/DB/SP) LosesGame AF sa and the new (AB/DB/SP) WinsGame AF sa to the AbilityFactory list.

Re: Keywords recognized by Forge

PostPosted: 05 May 2011, 18:57
by Chris H.
Added the new CARDNAME untaps during each other player's untap step. keyword.

Re: Keywords recognized by Forge

PostPosted: 07 May 2011, 18:33
by slapshot5
Added the new Replicate keyword of the form:

Replicate <cost>

Ex:

K:Replicate 2 U

I can't for the life of me figure out how to get this text on the card. I've tried. (Search for Replicate in Card.java). If anyone knows how to do this, please do.

-slapshot5

Re: Keywords recognized by Forge

PostPosted: 07 May 2011, 19:27
by Hellfish
Cool stuff,slapshot! I fixed the text display. Since you were calling kw.contains("Replicate") it always returned false because the actual item for,say, Gigadrowse is "Replicate U". I just looped through kw and checked each item individually the way you did.

Re: Keywords recognized by Forge

PostPosted: 07 May 2011, 20:10
by Chris H.
Thank you Sloth, I added Replicate to the keyword listing.

Re: Keywords recognized by Forge

PostPosted: 07 May 2011, 20:15
by Chris H.
Added the new (AB/DB/SP) RevealHand AF sa to the AbilityFactory list.

Re: Keywords recognized by Forge

PostPosted: 07 May 2011, 20:25
by slapshot5
Hellfish wrote:Cool stuff,slapshot! I fixed the text display. Since you were calling kw.contains("Replicate") it always returned false because the actual item for,say, Gigadrowse is "Replicate U". I just looped through kw and checked each item individually the way you did.
Ahhh. contains works differently than I had in my brain. I was thinking it was already looped, and I was just checking strings.

Thanks.

-slapshot5

edit: One note: There is currently an issue with Replicate and non-targeted cards, like Train of Thought. I'm working on that.