Enemies - particlequest/ParticleQuest GitHub Wiki
Enemies in ParticleQuest are supermassive particles that are threatening the balance of the Universe. They will be annihilated with the Anti-Sword and will drop data, increasing the level of the hero.
The different particles should implement the characteristics of the real particles in some sense. Here are some examples of the particles' sprites.

Damage
When the time comes here we we'll have the balance between the sword flavors and the enemies. Here there are some calculations for the current enemies in the game (they will be changed eventually).
[Level 0]
rat == Electron Neutrino:
,
hp: 0.002,
armor: 1,
weapon: 1
}
[Level 1]
crab == Muon Neutrino:
,
hp: 170.0,
armor: 1,
weapon: 1
}
bat == Electron:
,
hp: 500.0,
armor: 1,
weapon: 1
}
[Level 2]
goblin == Up Quark:
,
hp: 2400.0,
armor: 2,
weapon: 1
}
skeleton == Down Quark:
,
hp: 4800.0,
armor: 2,
weapon: 2
}
[Level 3]
snake == Tau Neutrino:
,
hp: 15500.0,
armor: 2,
weapon: 1
}
[Level 4]
ogre == Strange Quark:
,
hp: 104000.0,
armor: 3,
weapon: 2
}
skeleton2 == Muon:
,
hp: 105700.0,
armor: 3,
weapon: 2
}
[Level 5]
eye == Charm Quark:
,
hp: 1270000.0,
armor: 4,
weapon: 3
}
spectre == Tauon:
,
hp: 1800000.0,
armor: 4,
weapon: 3
}
death knight == Beauty Quark:
,
hp: 4200000.0,
armor: 4,
weapon: 4
}
[Level 6]
boss == Higgs Boson:
,
hp: 125000000.0,
armor: 6,
weapon: 7
}
Use Edit Page here to copy the script. This code goes to server\js\properties.js