Iron and Ice problems

Where I can find monster type in Iron and Ice?

You can find them on the last page of hints, also when you get data about next waves you see monster types.

2 Likes

Is there any function could print the monster lists then I can see all the monster types in the game.

no, but you could manually make a list

Than the same question "Where I can find monster type ", can you help?

Read (@)bryukh’s post

The hints last page is the special types but not the monster types, I want to get the monster type which could also get from the function hero.getWaves() , then I could decide the next map.

If you want to find some info that’s not documented and are willing to dig for it, you can always read through the level code here: https://codecombat.com/editor/level/tundra-tower – zoom out until you find the Well, which is the Referee, and click on that. A lot of the config is there in the Referee Component’s config or code. You can also check the Components tab and find the misc.IronAndIcePlayer Component’s code.

The current parameters are:

{
  "munchkin": {
    "maxSpeed": 12,
    "maxHealth": 50,
    "attackDamage": 10,
    "cost": 1,
    "attackRange": 4
  },
  "ogre": {
    "maxSpeed": 8,
    "maxHealth": 300,
    "attackDamage": 30,
    "cost": 3,
    "attackRange": 6
  },
  "thrower": {
    "maxSpeed": 20,
    "maxHealth": 100,
    "attackDamage": 25,
    "attackRange": 24,
    "cost": 3,
    "ranged": true
  },
  "orb": {
    "maxSpeed": 14,
    "maxHealth": 200,
    "attackDamage": 30,
    "attackRange": 5,
    "cost": 3,
    "flying": true
  },
  "troll": {
    "maxSpeed": 7,
    "maxHealth": 700,
    "attackDamage": 70,
    "cost": 6,
    "attackRange": 7
  },
  "shaman": {
    "maxSpeed": 18,
    "maxHealth": 300,
    "attackDamage": 60,
    "attackRange": 24,
    "cost": 4,
    "ranged": true
  },
  "bird": {
    "maxSpeed": 14,
    "maxHealth": 500,
    "attackDamage": 70,
    "attackRange": 6,
    "cost": 3,
    "flying": true
  },
  "brawler": {
    "maxSpeed": 6,
    "maxHealth": 3000,
    "attackDamage": 130,
    "cost": 9,
    "attackRange": 8
  },
  "warlock": {
    "maxSpeed": 16,
    "maxHealth": 1200,
    "attackDamage": 110,
    "attackRange": 24,
    "cost": 9,
    "ranged": true
  },
  "rider": {
    "maxSpeed": 14,
    "maxHealth": 1800,
    "attackDamage": 120,
    "attackRange": 24,
    "cost": 9,
    "flying": true,
    "ranged": true
  },
  "elemental": {
    "maxSpeed": 14,
    "maxHealth": 8000,
    "attackDamage": 350,
    "attackRange": 8,
    "cost": 20
  }
}

I’m not sure it’s possible to get to the elementals–maybe with both players being very defensive and nice?

Property one
image

Method two

I get it. Tks for your kind reply!

I get it. Tks for kind reply!