Lines Matching refs:monster
69 Monster monster = GameFactory.createMonsterFromStat(request, i); in retrieve() local
70 responseObserver.onNext(monster); in retrieve()
95 public void onNext(Monster monster) { in computeMinMax()
96 if (monster.hp() > maxHp.get()) { in computeMinMax()
98 maxHp.set(monster.hp()); in computeMinMax()
99 maxHpMonsterName.set(monster.name()); in computeMinMax()
102 else if (monster.hp() == maxHp.get()) { in computeMinMax()
107 if (monster.hp() < minHp.get()) { in computeMinMax()
109 minHp.set(monster.hp()); in computeMinMax()
110 minHpMonsterName.set(monster.name()); in computeMinMax()
113 else if (monster.hp() == minHp.get()) { in computeMinMax()
191 …Monster monster = GameFactory.createMonster(BIG_MONSTER_NAME + i, (short) (nestedMonsterHp * i), n…
192 monsterStream.onNext(monster);
226 …Monster monster = GameFactory.createMonster(BIG_MONSTER_NAME + i, (short) (nestedMonsterHp * i), n…
227 monsterStream.onNext(monster);