V0.2.0: Created Master Thieves' Armband & tied into drop logic.
This commit is contained in:
parent
bdc0c29882
commit
eab87af82c
|
@ -23,7 +23,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Terror;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
|
import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
|
import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
|
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.CharSprite;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ThiefSprite;
|
import com.shatteredpixel.shatteredpixeldungeon.sprites.ThiefSprite;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
|
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
|
||||||
|
@ -48,7 +48,7 @@ public class Thief extends Mob {
|
||||||
EXP = 5;
|
EXP = 5;
|
||||||
maxLvl = 10;
|
maxLvl = 10;
|
||||||
|
|
||||||
loot = RingOfHaggler.class;
|
loot = MasterThievesArmband.class;
|
||||||
lootChance = 0.01f;
|
lootChance = 0.01f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user