More card requests
by mtgrares
Moderators: timmermac, friarsol, Blacksmith, KrazyTheFox, Agetian, CCGHQ Admins
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: More card requests
by Mr.Chaos » 22 Jun 2009, 15:32
I know it has been mentioned before, but Isochron Scepter would be really cool to have in this game.
Also is a card like Fog or, even better, Respite possible?
I used to have a green elf deck with both the Isochron Scepter and Respite in it, worked wonders on defence.
Also is a card like Fog or, even better, Respite possible?
I used to have a green elf deck with both the Isochron Scepter and Respite in it, worked wonders on defence.
= coder at work, according to a coder.It does explain some of the bugs. - Mr.Chaos
- Tester
- Posts: 625
- Joined: 06 Sep 2008, 08:15
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by zerker2000 » 22 Jun 2009, 16:16
Ya, imprint would be problematic though...consideringMr.Chaos wrote:I know it has been mentioned before, but Isochron Scepter would be really cool to have in this game.
:PAlso is a card like Fog or, even better, Respite possible?
I used to have a green elf deck with both the Isochron Scepter and Respite in it, worked wonders on defence.
Unless one of the more senior programmers can do anything meaningful with it, I don't think the Scepter is very likely
Fog... It might be, I Am pretty sure that I can turn Fog into Respite easily
O forest, hold thy wand'ring son
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
- zerker2000
- Programmer
- Posts: 569
- Joined: 09 May 2009, 21:40
- Location: South Pasadena, CA
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by DennisBergkamp » 22 Jun 2009, 16:39
-

DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by Rob Cashwalker » 22 Jun 2009, 18:43
The Imprint ability isn't too far from Oblivion Ring, and both "remember" the exiled card (gotta get used to it). Don't see any reason why the Scepter couldn't just execute the card's SpellAbility.
The Force will be with you, Always.
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: More card requests
by DennisBergkamp » 22 Jun 2009, 18:53
Mainly the issue here is how to execute the SpellAbility?
You can do Allzone.Stack.add(spellability)... but the problem here is that if the spellability has a target, the target input will get skipped.
It may be possible, if we set the manacost of the SpellAbility to 0.
You can do Allzone.Stack.add(spellability)... but the problem here is that if the spellability has a target, the target input will get skipped.
It may be possible, if we set the manacost of the SpellAbility to 0.
-

DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by Rob Cashwalker » 22 Jun 2009, 19:06
Why not go straight to exiledCard.getSpellAbility().resolve()?
Or during resolution of Isochron Scepter, copy and (cast) the SpellAbility to the Isochron's Ability_Tap, and yes, change the mana cost to 2 in the process...?
Or literally, copy the card, change its mana cost, and then simulate playing it (whatever function is used to "play" a card).
Or during resolution of Isochron Scepter, copy and (cast) the SpellAbility to the Isochron's Ability_Tap, and yes, change the mana cost to 2 in the process...?
Or literally, copy the card, change its mana cost, and then simulate playing it (whatever function is used to "play" a card).
The Force will be with you, Always.
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: More card requests
by Mr.Chaos » 22 Jun 2009, 19:20
That's the first time I have seen a fog stir up so much dust. 
But of all Fog-like cards, I like Respite the most, nobody likes seeing an opponent GAIN life when you attack him.
Keeping attackers tapped is nice but not key, the thread of gaining life from an attacker is much greater in most games.
But of all Fog-like cards, I like Respite the most, nobody likes seeing an opponent GAIN life when you attack him.
Keeping attackers tapped is nice but not key, the thread of gaining life from an attacker is much greater in most games.
= coder at work, according to a coder.It does explain some of the bugs. - Mr.Chaos
- Tester
- Posts: 625
- Joined: 06 Sep 2008, 08:15
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by zerker2000 » 22 Jun 2009, 20:00
AllZone.GameAction.playCard, I think.Rob Cashwalker wrote:(whatever function is used to "play" a card).
O forest, hold thy wand'ring son
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
Though fears assail the door.
O foliage, cloak thy ravaged one
In vestments cut for war.
--Eladamri, the Seed of Freyalise
- zerker2000
- Programmer
- Posts: 569
- Joined: 09 May 2009, 21:40
- Location: South Pasadena, CA
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by DennisBergkamp » 22 Jun 2009, 20:19
That's right, which calls PlaySpellAbility(sa) <-- this takes into account targeting as well (unlike just throwing the ability on the stack).
I think it would be important to copy the card, because I'm not sure if changing the manacost of the SpellAbility will reset correctly for next game.
I think it would be important to copy the card, because I'm not sure if changing the manacost of the SpellAbility will reset correctly for next game.
-

DennisBergkamp - AI Programmer
- Posts: 2602
- Joined: 09 Sep 2008, 15:46
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by Rob Cashwalker » 22 Jun 2009, 20:45
Yeah. That's part of the whole problem with these cards - they're generated at startup, so anything you do to them during runtime will get stuck to them between games. So that also means we shouldn't modify the original Ability_Tap that's on the Scepter.
The Force will be with you, Always.
-

Rob Cashwalker - Programmer
- Posts: 2167
- Joined: 09 Sep 2008, 15:09
- Location: New York
- Has thanked: 5 times
- Been thanked: 40 times
Re: More card requests
by GandoTheBard » 22 Jun 2009, 21:13
That goes to the disposable copy I was talking about a while go. Don't change anything on the original card. Copy it and have that take all changes. This way when the card is no longer in the battlefield zone all changes made to it are discarded and when/if it is put back into the zone you start with a new disposable copy.
visit my personal homepage here: http://outofthebrokensky.com
Listen to my podcast with famed AJ_Impy "Freed from the Real" on http://puremtgo.com
Listen to my podcast with famed AJ_Impy "Freed from the Real" on http://puremtgo.com
-

GandoTheBard - Tester
- Posts: 1043
- Joined: 06 Sep 2008, 18:43
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by apthaven » 23 Jun 2009, 07:09
It's my first time to post here by the way... been busy stalking this forum for months now
Anyway... I wonder if the following cards could get implemented:
Reveillark
Cloudthresher
Mutavault
And a bunch of faeries (Blue and Black):
Mistbind Clique
Glen Elendra Liege
Glen Elendra Archmage
Faerie Swarm
Faerie Mechanist
Faerie Harbinger
Anyway... I wonder if the following cards could get implemented:
Reveillark
Cloudthresher
Mutavault
And a bunch of faeries (Blue and Black):
Mistbind Clique
Glen Elendra Liege
Glen Elendra Archmage
Faerie Swarm
Faerie Mechanist
Faerie Harbinger
"I am a man and real men do not consume pink beverages. Get thee gone woman, and bring me something brown." - Jace Wayland
Re: More card requests
by GandoTheBard » 23 Jun 2009, 07:17
Welcome to the forums officially. Good ideas all.apthaven wrote:It's my first time to post here by the way... been busy stalking this forum for months now![]()
Anyway... I wonder if the following cards could get implemented:
Reveillark
Cloudthresher
Mutavault
And a bunch of faeries (Blue and Black):
Mistbind Clique
Glen Elendra Liege
Glen Elendra Archmage
Faerie Swarm
Faerie Mechanist
Faerie Harbinger
visit my personal homepage here: http://outofthebrokensky.com
Listen to my podcast with famed AJ_Impy "Freed from the Real" on http://puremtgo.com
Listen to my podcast with famed AJ_Impy "Freed from the Real" on http://puremtgo.com
-

GandoTheBard - Tester
- Posts: 1043
- Joined: 06 Sep 2008, 18:43
- Has thanked: 0 time
- Been thanked: 0 time
Re: More card requests
by apthaven » 23 Jun 2009, 07:23
Thanks for the warm welcome.
And another thing, seeing that Forge can now have a mana pool (And no mana burn whatsoever due to the new rules)
Maybe its also a good idea to add lands such as (which adds mana of different colors when tapped)
Examples of which are (many of which come from the Ravnica block):
Azorius Chancery
Boros Garrison
and so on.
And another thing, seeing that Forge can now have a mana pool (And no mana burn whatsoever due to the new rules)
Maybe its also a good idea to add lands such as (which adds mana of different colors when tapped)
Examples of which are (many of which come from the Ravnica block):
Azorius Chancery
Boros Garrison
and so on.
"I am a man and real men do not consume pink beverages. Get thee gone woman, and bring me something brown." - Jace Wayland
Who is online
Users browsing this forum: No registered users and 14 guests
