[SOLVED] Level help clash of clones

In clash of clones, why does my clone grow bigger after attacking about 5 times and suddenly do way more damage? and how am I able to get around this? I am using the simple sword, steel striker, crude spike, obsidian breastplate, and painted steel helmet.

1 Like

Minus the steel striker. That was a typo.

1 Like

The clone grows because a shaman casts the grow spell and makes the clone have more health. If you need help with your code, can you show us your code formated as it is described below so we will be able to help you?

Andrei

1 Like

Honestly I’m not the best at coding lol.

def bash(enemy):
    while enemy and enemy.health > 0:
        hero.shield()
        if hero.isReady("bash"):
            hero.bash(enemy)
while True:
    enemy = hero.findNearestEnemy()
    if enemy:
        bash(enemy)
1 Like

Is there an enemy type of a shaman so I can target it first before the clone maybe?

1 Like

The shaman’s type is “shaman”.

Andrei

1 Like

You should try using the Long Sword with all of the other equipments. And I strongly suggest to read all of the other topics about Clash of Clones.
Lydia

1 Like

I’m using the basic sword so that the clone won’t be able to attack that well, and then the crude spike has bash.

1 Like

Yes, I’m suggesting to use the Long Sword because it has the cleave function. In this level, you will need to use the worst armor and the swords and shield with special abilities, like “cleave” and “bash”.
Lydia

2 Likes

Ah, thanks. I will definitely try that.

2 Likes

What is the enemy type of a sand yak, and how do I not attack it if I see one?

1 Like

Sand yak would be a “sand-yak” and you would use something like

if enemy and enemy.type != "sand-yak"
1 Like

Can you send a screenshot with your equipment?

image

1 Like

Also I have 53 gems, so I can’t really buy anything.

1 Like

Try to use electrocute ring.

I have a lot more stuff than that though. It’s just to lessen the strength of the clone and be able to bash and cleave. Also I am using electrocute ring.

1 Like

Have you got chain-lightning gloves?

Not yet I don’t think

1 Like

Did you try to use electrocute ring?