Terms
You can put your comments and questions hereItems
Locations
Armor
HP
Damage
Limit Break
Critical Hit
Cheats
- Items -
Your bunny can wear equipment. There are five types of equipment; Head Gear, Body Gear, Arm Gear, Foot Gear and Weapon. Each type of item can have a bonus to your Damage, Armor and Hit Points. - Locations -
- Armor -
Your armor protects you from damage. In a fight your armor value is subtracted from the damage the monster does to you and vice versa.
Example: a Mantis hits you for 11 points of damage, your have 8 armor. You take 3 points damage. - HP -
Hit Points is your level of health. Damage that gets past your armor is subtracted from your health. - Damage -
Damage is a number range, for example 5-10, a normal hit will is somewhere in the range between the lower and the higher number. - Limit break -
The code picks a random number between 1 and 100, if number is 91 or higher you miss.
if (rand <= 10 && (FIGHT.pet.cur_hp <= .1*FIGHT.pet.hp)) {
monsterhit = Math.ceil(2*FIGHT.pet.max_damage + Math.random() * \
(FIGHT.pet.max_damage));
msg = " (Limit Break!) ";
}
If the number is 10 or less and you have less than 10 percent of your hit points left you do between maximum and two times maximum damage. The idea is to decisively end the fight if you're about to lose.
Example: if the damage for your pet is 400-600, then your Limit Break would be somewhere between 600 and 1200.
A monster can not do a Limit Break. - Critical hit -
The code picks a random number between 1 and 100, if the number is 91 or higher you miss.
else if (rand <= 2) {
monsterhit = Math.ceil(FIGHT.pet.max_damage + Math.random() * \
(FIGHT.pet.max_damage-FIGHT.pet.min_damage));
msg = " (Critical Hit!) ";
}
If the number is 2 or less you do maximum damage plus a number between 0 and the difference between your maximum damage and you minimum damage. This is the Critical Hit.
Example: if the damage for your pet is 400-600, then your Critical Hit would be somewhere between 600 and 800.
A monster can not do a Critical Hit. - Cheats -
Like many games there are certain ways to get around specific restrictions in the game. I do not however condone cheating and will not enable anyone else to cheat. Any posts on this site related to cheating will be removed.

