Paper master
Summons Paper golem
Stock: -12
If not enough stock
Enemy wall: +50
Always:
Attack: 60
Cost (B / G / R)
0 / 0 / 0
BB code
Effect
Summons Paper golem
Stock: -12
If not enough stock
Enemy wall: +50
Always:
Attack: 60
Code
$t->myData()->addStock(-12);
foreach (['Bricks', 'Gems', 'Recruits'] as $resource) {
if ($t->myData()->$resource < 0) {
$t->hisData()->addWall(50);
break;
}
}
$t->hisData()->attack(60);
$t->nextCard(754);