Decker coded cards

Hi,
So I'm going to post here the cards that I am fiddling with (I don't know if the id is of any use or only related to my version ?).
Kabuto Moth (200789d)
So I'm going to post here the cards that I am fiddling with (I don't know if the id is of any use or only related to my version ?).
Kabuto Moth (200789d)
- Code: Select all
int card_kabuto_moth(int player, int card, event_t event){
return vanilla_creature_pumper(player, card, event, 0, 0, 0, 0, 0, 0, 3, 1, 2, 0, 0);
}
- Code: Select all
int card_to_arms(int player, int card, event_t event){
if( event == EVENT_CAN_CAST ){
return 1;
}
if( event == EVENT_RESOLVE_SPELL ){
manipulate_all(player, card, player, TYPE_CREATURE, 0, 0, 0, 0, 0, 0, 0, -1, 0, ACT_UNTAP);
draw_cards(player, 1);
kill_card(player, card, KILL_DESTROY);
}
return 0;
}