44 lines
1.7 KiB
Java
44 lines
1.7 KiB
Java
/*
|
|
* Pixel Dungeon
|
|
* Copyright (C) 2012-2014 Oleg Dolya
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
package com.shatteredpixel.shatteredpixeldungeon;
|
|
|
|
public class ResultDescriptions {
|
|
|
|
// Mobs
|
|
public static final String MOB = "Killed by %s on level %d";
|
|
public static final String BOSS = "Killed by the %s on level %d";
|
|
|
|
// Items
|
|
public static final String ITEM = "Killed by your own %s on level %d";
|
|
public static final String GLYPH = "Killed by the %s on level %d";
|
|
|
|
// Dungeon features
|
|
public static final String TRAP = "Killed by discharge of %s on level %d";
|
|
|
|
// Debuffs & blobs
|
|
public static final String BURNING = "Burned to death on level %d";
|
|
public static final String HUNGER = "Starved to death on level %d";
|
|
public static final String POISON = "Died from poison on level %d";
|
|
public static final String GAS = "Died from toxic gas on level %d";
|
|
public static final String BLEEDING = "Bled to death on level %d";
|
|
public static final String OOZE = "Killed by a caustic ooze on level %d";
|
|
public static final String FALL = "Fell to death on level %d";
|
|
|
|
public static final String WIN = "Obtained the Amulet of Yendor";
|
|
}
|