/* * * Iter Vehemens ad Necem (IVAN) * Copyright (C) Timo Kiviluoto * Released under the GNU General * Public License * * See LICENSING which should be included * along with this file for more details * */ /* Compiled through areaset.cpp */ const char* terrain::SurviveMessage() const { return "somehow you survive"; } const char* terrain::MonsterSurviveMessage() const { return "somehow survives"; } const char* terrain::DeathMessage() const { return "strangely enough, you die"; } const char* terrain::MonsterDeathVerb() const { return "dies"; } const char* terrain::ScoreEntry() const { return "died on unfriendly terrain"; }