@@ -37019,8 +37019,8 @@ type=Instant
|
|||||||
[/card]
|
[/card]
|
||||||
[card]
|
[card]
|
||||||
name=Fevered Visions
|
name=Fevered Visions
|
||||||
auto=@at my endofturn:draw:1
|
auto=@each my endofturn:draw:1
|
||||||
auto=@at opponent endofturn:draw:1 opponent && if type(*|opponenthand)~morethan~3 then damage:2 opponent
|
auto=@each opponent endofturn:draw:1 opponent && if type(*|opponenthand)~morethan~3 then damage:2 opponent
|
||||||
text=At the beginning of each player's end step, that player draws a card. If the player is your opponent and has four or more cards in hand, Fevered Visions deals 2 damage to him or her.
|
text=At the beginning of each player's end step, that player draws a card. If the player is your opponent and has four or more cards in hand, Fevered Visions deals 2 damage to him or her.
|
||||||
mana={1}{U}{R}
|
mana={1}{U}{R}
|
||||||
type=Enchantment
|
type=Enchantment
|
||||||
|
|||||||
@@ -100,7 +100,13 @@ void MTGCardInstance::copy(MTGCardInstance * card)
|
|||||||
MTGCard * source = card->model;
|
MTGCard * source = card->model;
|
||||||
CardPrimitive * data = source->data;
|
CardPrimitive * data = source->data;
|
||||||
|
|
||||||
basicAbilities = card->origbasicAbilities;
|
//basicAbilities = card->origbasicAbilities;
|
||||||
|
for(int k = 0; k < Constants::NB_BASIC_ABILITIES; k++)
|
||||||
|
{
|
||||||
|
if(card->model->data->basicAbilities[k])
|
||||||
|
basicAbilities[k] = card->model->data->basicAbilities[k];
|
||||||
|
}
|
||||||
|
|
||||||
origbasicAbilities = card->origbasicAbilities;
|
origbasicAbilities = card->origbasicAbilities;
|
||||||
modifiedbAbi = card->modifiedbAbi;
|
modifiedbAbi = card->modifiedbAbi;
|
||||||
for (size_t i = 0; i < data->types.size(); i++)
|
for (size_t i = 0; i < data->types.size(); i++)
|
||||||
|
|||||||
Reference in New Issue
Block a user