v0.7.0: fixed no text found errors, added new potion/scroll to catalog
This commit is contained in:
parent
071d7de639
commit
896e96b9b5
|
@ -46,11 +46,11 @@ import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.TimekeepersHourg
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.UnstableSpellbook;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfExperience;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfFrost;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHaste;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfInvisibility;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLevitation;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfMight;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfMindVision;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfParalyticGas;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfPurity;
|
||||
|
@ -70,7 +70,6 @@ import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfWealth;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfIdentify;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfLullaby;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicMapping;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMagicalInfusion;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfMirrorImage;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfPsionicBlast;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRage;
|
||||
|
@ -78,6 +77,7 @@ import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRecharging
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfRemoveCurse;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTeleportation;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTerror;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfTransmutation;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.scrolls.ScrollOfUpgrade;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfBlastWave;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfCorrosion;
|
||||
|
@ -242,7 +242,7 @@ public enum Catalog {
|
|||
POTIONS.seen.put( PotionOfMindVision.class, false);
|
||||
POTIONS.seen.put( PotionOfInvisibility.class, false);
|
||||
POTIONS.seen.put( PotionOfExperience.class, false);
|
||||
POTIONS.seen.put( PotionOfMight.class, false);
|
||||
POTIONS.seen.put( PotionOfHaste.class, false);
|
||||
|
||||
SCROLLS.seen.put( ScrollOfIdentify.class, false);
|
||||
SCROLLS.seen.put( ScrollOfUpgrade.class, false);
|
||||
|
@ -255,7 +255,7 @@ public enum Catalog {
|
|||
SCROLLS.seen.put( ScrollOfLullaby.class, false);
|
||||
SCROLLS.seen.put( ScrollOfRage.class, false);
|
||||
SCROLLS.seen.put( ScrollOfPsionicBlast.class, false);
|
||||
SCROLLS.seen.put( ScrollOfMagicalInfusion.class, false);
|
||||
SCROLLS.seen.put( ScrollOfTransmutation.class, false);
|
||||
}
|
||||
|
||||
public static LinkedHashMap<Catalog, Badges.Badge> catalogBadges = new LinkedHashMap<>();
|
||||
|
|
|
@ -141,7 +141,7 @@ items.artifacts.alchemiststoolkit.ac_brew=BREW
|
|||
items.artifacts.artifact.cannot_wear_two=You cannot wear two of the same artifact.
|
||||
items.artifacts.artifact.equip_cursed=The artifact painfully binds itself to you.
|
||||
items.artifacts.artifact.curse_known=You can feel a malevolent magic lurking within the artifact.
|
||||
items.artifacts.artifact.no_curse=This artifact is free of malevolent magic.
|
||||
items.artifacts.artifact.not_cursed=This artifact is free of malevolent magic.
|
||||
items.artifacts.artifact.need_to_equip=You need to equip your artifact to do that.
|
||||
|
||||
items.artifacts.capeofthorns.name=cape of thorns
|
||||
|
@ -551,7 +551,7 @@ items.rings.ring.known=This is a %s
|
|||
items.rings.ring.identify=You are now familiar enough with your ring to identify it. It is a %s.
|
||||
items.rings.ring.cursed_worn=Because this ring is cursed, you are powerless to remove it.
|
||||
items.rings.ring.curse_known=You can feel a malevolent magic lurking within this ring.
|
||||
items.rings.ring.no_curse=This ring is free of malevolent magic.
|
||||
items.rings.ring.not_cursed=This ring is free of malevolent magic.
|
||||
|
||||
items.rings.ringofaccuracy.name=ring of accuracy
|
||||
items.rings.ringofaccuracy.desc=This ring increases your focus, reducing your enemy's ability to dodge your attacks. A cursed ring will instead make it easier for enemies to evade your attacks.
|
||||
|
|
Loading…
Reference in New Issue
Block a user