MArcomage

Free multiplayer on-line fantasy card game

Please log in


25 R
Catastrophe
Catastrophe

Destruction Nature

Each player suffers 4 damage for each facility and 10 resources he has

Id
80
Name
Catastrophe
Rarity
Rare
Keywords
Cost (B / G / R)
0 / 25 / 0
Modes
0
Level
9
Created
1. May, 2006
Modified
8. Sep, 2012
Played
607 / 4141
Discarded
456 / 4147
Drawn
1765 / 11995

BB code

Effect

Each player suffers 4 damage for each facility and 10 resources he has

Code

    $my_fac = $t->myData()->Quarry + $t->myData()->Magic + $t->myData()->Dungeons;
    $his_fac = $t->hisData()->Quarry + $t->hisData()->Magic + $t->hisData()->Dungeons;
    $my_res = $t->myData()->Bricks + $t->myData()->Gems + $t->myData()->Recruits;
    $his_res = $t->hisData()->Bricks + $t->hisData()->Gems + $t->hisData()->Recruits;
    $t->myData()->attack(($my_fac + floor($my_res / 10)) * 4);
    $t->hisData()->attack(($his_fac + floor($his_res / 10)) * 4);