V0.2.0: Created Master Thieves' Armband & tied into drop logic.

This commit is contained in:
Evan Debenham 2014-09-03 17:18:30 -04:00
parent bdc0c29882
commit eab87af82c
2 changed files with 26 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
import com.shatteredpixel.shatteredpixeldungeon.items.rings.RingOfHaggler;
import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.MasterThievesArmband;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ThiefSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
@ -48,7 +48,7 @@ public class Thief extends Mob {
EXP = 5;
maxLvl = 10;
loot = RingOfHaggler.class;
loot = MasterThievesArmband.class;
lootChance = 0.01f;
}

View File

@ -0,0 +1,24 @@
package com.shatteredpixel.shatteredpixeldungeon.items.artifacts;
import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet;
/**
* Created by debenhame on 03/09/2014.
*/
public class MasterThievesArmband extends Artifact {
{
name = "Master Thieves' Armband";
image = ItemSpriteSheet.ARTIFACT_ARMBAND;
level = 0;
levelCap = 10;
charge = 0;
chargeCap = 100;
//partialcharge is unused
}
public class Thievery extends ArtifactBuff{
}
}