Spirit of Earth
Attack: 3
Wall: +7
If matching card is an attack card
Bricks prod x2
Cost (B / G / R)
10 / 0 / 0
BB code
Effect
Attack: 3
Wall: +7
If matching card is an attack card
Bricks prod x2
Code
$t->hisData()->attack(3);
$t->myData()->addWall(7);
$attack_cards = $t->getList(['advanced'=>'Attack:']);
if (in_array($t->hisData()->Hand[$t->cardPos()], $attack_cards)) {
$t->production()->multiplyBricks(2);
}