19 lines
396 B
Java
19 lines
396 B
Java
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
|
|
}
|
|
|
|
|
|
}
|