v0.2.3: improvements to the rankings page

This commit is contained in:
Evan Debenham
2015-01-03 21:55:40 -05:00
parent 0db40dbf87
commit 872199b43e
26 changed files with 115 additions and 44 deletions
@@ -20,25 +20,25 @@ package com.shatteredpixel.shatteredpixeldungeon;
public class ResultDescriptions {
// Mobs
public static final String MOB = "Killed by %s on level %d";
public static final String UNIQUE = "Killed by the %s on level %d";
public static final String NAMED = "Killed by %s on level %d";
public static final String MOB = "Killed by %s";
public static final String UNIQUE = "Killed by the %s";
public static final String NAMED = "Killed by %s";
// 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";
public static final String ITEM = "Killed by your own %s";
public static final String GLYPH = "Killed by the %s";
// Dungeon features
public static final String TRAP = "Killed by a %s on level %d";
public static final String TRAP = "Killed by a %s";
// 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 = "Corroded to death on level %d";
public static final String FALL = "Fell to death on level %d";
public static final String BURNING = "Burned to Ash";
public static final String HUNGER = "Starved to Death";
public static final String POISON = "Succumbed to Poison";
public static final String GAS = "Asphyxiated";
public static final String BLEEDING = "Bled to Death";
public static final String OOZE = "Melted Away";
public static final String FALL = "Died on Impact";
public static final String WIN = "Obtained the Amulet of Yendor";
}