Rock golem
Unliving
If Wall <16 or #Unliving cards in your hand > 6
Wall: x2
Else Bricks: +17
BB code
Effect
If Wall <16 or #Unliving cards in your hand > 6
Wall: x2
Else Bricks: +17
Note
Possible code:
if (($this->KeywordCount($mydata->Hand, "Unliving") > 6) or ($mydata->Wall < 16)) $mydata->Wall*= 2;
else $mydata->Bricks+= 17;