Home
last modified time | relevance | path

Searched refs:getTheName (Results 1 – 6 of 6) sorted by relevance

/dports/games/keeperrl/keeperrl-alpha23/
H A Ditem.cpp102 string noBurningName = getTheName(); in fireDamage()
121 position.globalMessage(getTheName() + " burns out"); in tick()
207 c->privateMessage(getTheName() + " is used up."); in applySpecial()
281 string Item::getTheName(bool getPlural, WConstCreature owner) const { in getTheName() function in Item
295 return toString(count) + " " + getTheName(true); in getPluralTheName()
297 return getTheName(false); in getPluralTheName()
H A Ditem.h43 string getTheName(bool plural = false, WConstCreature owner = nullptr) const;
H A Dsquare.cpp102 creature->you(MsgType::MISS_THROWN_ITEM, item[0]->getTheName()); in itemLands()
H A Dcreature.cpp429 return item->getTheName(false, this); in getPluralTheName()
431 return toString(num) + " " + item->getTheName(true, this); in getPluralTheName()
537 secondPerson("You equip " + item->getTheName(false, self)); in equip()
558 item->getTheName(false, this)); in unequip()
1378 return CreatureAction(item->getTheName() + " is too heavy!"); in throwItem()
H A Dplayer.cpp314 if (auto name = getView()->getText("Enter a name for " + items[0]->getTheName(), in handleItems()
426 …if (creatures.size() == 1 && getView()->yesOrNoPrompt("Give " + items[0]->getTheName(items.size() … in giveAction()
H A Ditem_type.cpp71 c->you(MsgType::DECAPITATE, getTheName()); in applySpecial()
97 v.globalMessage("A vulture lands near " + getTheName()); in specialTick()