Skip to content

PrimeAcademy/javascript-fungus-fighter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript Fungus Fighter

Fight mutant fungus villains, with JavaScript!

demo

It is you versus the Freaky Fungus, an evil mycological menace from Duluth. Use your JavaScript 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: In JavaScript .value property can be used to update the value that is currently held by an input field. (Documentation)

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

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published