MArcomage

Free multiplayer on-line fantasy card game

Please log in


10 U
Hectic offensive
Hectic offensive

If Enemy wall - Wall > 10
Attack: 25
else
Attack: 15

Id
211
Name
Hectic offensive
Rarity
Uncommon
Keywords
Cost (B / G / R)
0 / 0 / 10
Modes
0
Level
0
Created
1. May, 2006
Modified
16. Sep, 2017
Played
217 / 4247
Discarded
74 / 2423
Drawn
378 / 12628

BB code

Effect

If Enemy wall - Wall > 10
Attack: 25
else
Attack: 15

Code

    if (($t->hisData()->Wall - $t->myData()->Wall) > 10) {
      $t->hisData()->attack(25);
    }
    else {
      $t->hisData()->attack(15);
    }