AdamBergstrom138 / jquery-fungus-fighter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jQuery Fungus Fighter

Fight mutant fungus villains, with jQuery!

demo

It is you versus the Freaky Fungus, an evil mycological menace from mars. Use your jQuery skills to dispatch attacks against your enemy. To win, the Freaky Fungus must have 0 hit points (HP) before you are out of attack points (AP).

Requirements

Handle click events:

When you click an attack button:

  • update state variable(s) to make the Freaky Fungus lose hit points (HP), and to reduce your attack points (AP).
  • See Attacks below, for the AP and HP values of each attack
  • State may be held in one our more variables of your choosing
  • HP and AP values may not be negative (set to zero, if they would otherwise be negative)

Render state changes to the DOM

  • Update the text above the attack buttons (eg, "100 AP")
  • Update the text above the enemy fungus (eg, "100 HP")
  • If the Freaky Fungus runs out of HP, the monster is dead and you win! Replace the walk class with a dead class on the freaky-fungus element, to make them fall over and die.
  • If you run out of AP, the monster wins and humanity is doomed 😢 Replace the walk class with a jump class on the freaky-fungus element, to make them jump for the glory of the fungal race.
    • You may no longer attack, if AP is 0. Give all of the attack buttons a disabled attribute, so they may no longer be used.

Stretch Goals

Progress Bar

When state changes:

  • Update the value of each <progress> element

Hint: the jQuery .val() method updates the value attribute of HTML elements!

HP Regeneration

Scientist have recently revealed that fungi are tougher under harsh conditions.

If the Freaky Fungus' HP falls below 50, have it regenerate 1 HP every second.

HINT: Look up the built in setInterval() function!

Attacks

arcane scepter Arcane Scepter

  • AP Cost: 12
  • HP Damage: 14

entangle Entangle

  • AP Cost: 23
  • HP Damage: 9

dragon blade Dragon Blade

  • AP Cost: 38
  • HP Damage: 47

star fire Star Fire

  • AP Cost: 33
  • HP Damage: 25

Attributions

Game art is freely available from OpenGameArt.org:

About


Languages

Language:CSS 44.2%Language:JavaScript 42.6%Language:HTML 13.2%