Home | History | Annotate | Download | only in rogue

Lines Matching refs:rogue

56 #include "rogue.h"
102 row = rogue.row; col = rogue.col;
256 hp = rogue.hp_current / 3;
257 rogue.hp_current = (rogue.hp_current + 1) / 2;
313 ((orow == rogue.row) && (ocol == rogue.col))));
327 ((row == rogue.row) && (col == rogue.col))));
347 damage = get_rand((rogue.hp_current / 3), rogue.hp_max);
363 damage = rogue.hp_current / 4;
374 } else if ((row == rogue.row) && (col == rogue.col)) {
375 if (rand_percent(10 + (3 * get_armor_class(rogue.armor)))) {
379 damage = get_rand(3, (3 * rogue.exp));
382 damage -= get_armor_class(rogue.armor);