Sheath your swords
Replace all non-rare recruits or mixed cost attack cards with Saints day, Merchant, Caravan or Ambassador
$green_c = $t->getList(['rarity'=>'Common', 'cost'=>'Green', 'advanced'=>'Attack:']);
$green_u = $t->getList(['rarity'=>'Uncommon', 'cost'=>'Green', 'advanced'=>'Attack:']);
$mixed_c = $t->getList(['rarity'=>'Common', 'cost'=>"Mixed", 'advanced'=>'Attack:']);
$mixed_u = $t->getList(['rarity'=>'Uncommon', 'cost'=>"Mixed", 'advanced'=>'Attack:']);
$attack_cards = array_unique(array_merge($green_c, $green_u, $mixed_c, $mixed_u));
for ($i = 1; $i <= $t->handSize(); $i++) {
if (in_array($t->myData()->Hand[$i], $attack_cards) && $i != $t->cardPos()) {
$t->setCard('my', $i, $t->drawCard([263, 273, 23, 660], $t->myData()->Hand, $i, 'drawCardList'));
}
}
for ($i = 1; $i <= $t->handSize(); $i++) {
if (in_array($t->hisData()->Hand[$i], $attack_cards)) {
$t->setCard('his', $i, $t->drawCard([263, 273, 23, 660], $t->hisData()->Hand, $i, 'drawCardList'));
}
}