Skip to content

idleLoops: Practical Magic #33

Description

@MrNuggelz

The Practical Magic tooltip states, that the mana cost of Smash Pots is decreased by 1% for every level, meaning that at level 100 the mana cost of Smash Pots should be 0.
But the in the javascript code the mana is computed by:
50 / (1 + getSkillLevel("Practical")/100)
producing a value of 25 for level 100.

So either the manaCost function should be changed to:
return Math.ceil(50 * (1 - getSkillLevel("Practical")/100);
or the tooltip should be changed.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions