List of summonable units and methods
Boss Star 1
DESCRIPTION BS1: This token of leadership lets you summon and command soldiers as long as you have the gold.
COMMAND DESC: command allows you to call any of commandableMethods (move,attack,defend) on allied minions. You can command minions of types in commandableTypes: soldier,archer
NEW ACTIONS:
attack - attack an enemy
defend - defend position and attack enemies that came in range
move - move unit to position
NEW ATTRIBUTES:
none
NEW UNITS
soldier - basic melee unit
Boss Star 2
DESCRIPTION BS2: Summons and commands soldiers and archers.
COMMAND DESC: command allows you to call any of commandableMethods (move,attack,defend,buildXY) on allied minions. You can command minions of types in commandableTypes: soldier,archer,griffin-rider,peasant.
NEW ACTIONS:
none
NEW ATTRIBUTES:
none
NEW UNITS
archer - basic ranged unit (RNG:25)
Boss Star 3
DESCRIPTION BS3: Summons and commands soldiers, archers, griffin riders, and peasants.
COMMAND DESC: command allows you to call any of commandableMethods (move,attack,defend,cast,buildXY,shield) on allied minions. You can command minions of types in commandableTypes: soldier,archer,griffin-rider,peasant,paladin
NEW ACTIONS:
buildXY - , “fire-trap”, “decoy” and “palisade” can be built by peasants only
Example (Python):
self.command(peasant, 'buildXY', "fire-trap", 10, 10)
- command with 5 arguments where 3rd is “structure_name”, 4th is pos.x and 5th is pos.y
NEW UNITS
griffin-rider - can fly, ranged attack (RNG:20)
peasant - can build things and collect coins
CAN COMMAND
paladin - she can heal allies and shield herself
NEW ATTRIBUTES:
paladin.canCast(“spell_name”) - check if spell is ready, paladins only
NEW ACTIONS:
shield - blocks 50% of incoming damage, paladins only
cast - cast “heal”,paladins only
Example (Python):
if healTarget and paladin.canCast("heal"):
self.command(paladin, "cast", "heal", healTarget)
if paladin.health <= paladin.maxHealth/4:
self.command(paladin, "shield")
cast - command with 4 arguments where 3rd is “spell_name” and 4th is ally object unit.
You can always command one level higher than you can summon. For example, with the Boss Star III, you can command paladins, but not summon them.
All Boss Stars give you a specific amount of income. The Boss Star I gives you one income every two seconds, the II one every second, and the III two every second.