diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java new file mode 100644 index 000000000..72d5fcd77 --- /dev/null +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/ChaliceOfBlood.java @@ -0,0 +1,18 @@ +package com.shatteredpixel.shatteredpixeldungeon.items.artifacts; + +import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; + +/** + * Created by debenhame on 27/08/2014. + */ +public class ChaliceOfBlood extends Artifact { + + { + name = "Chalice of Blood"; + image = ItemSpriteSheet.ARTIFACT_CHALICE; + level = 0; + //charge & chargecap are unused + } + + +}