V0.2.0: Added shading to talisman of foresight, tweaked Greaves of nature sprite, updated logo (still temp)
BIN
assets/items.png
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 10 KiB |
|
@ -85,7 +85,7 @@ public class ChaliceOfBlood extends Artifact {
|
||||||
|
|
||||||
damage -= Random.IntRange(0, hero.dr());
|
damage -= Random.IntRange(0, hero.dr());
|
||||||
|
|
||||||
//TODO: make sure this look good
|
//TODO: make sure this looks good
|
||||||
if (damage <= 0){
|
if (damage <= 0){
|
||||||
GLog.i("You prick yourself, and your blood drips into the chalice.");
|
GLog.i("You prick yourself, and your blood drips into the chalice.");
|
||||||
} else if (damage < 25){
|
} else if (damage < 25){
|
||||||
|
@ -95,11 +95,11 @@ public class ChaliceOfBlood extends Artifact {
|
||||||
} else if (damage < 100){
|
} else if (damage < 100){
|
||||||
GLog.w("Your life essence drains into the chalice.");
|
GLog.w("Your life essence drains into the chalice.");
|
||||||
Sample.INSTANCE.play(Assets.SND_CURSED);
|
Sample.INSTANCE.play(Assets.SND_CURSED);
|
||||||
hero.sprite.emitter().burst( ShadowParticle.CURSE, 6 );
|
hero.sprite.emitter().burst( ShadowParticle.CURSE, 9 );
|
||||||
} else {
|
} else {
|
||||||
GLog.w("The chalice devours your life energy.");
|
GLog.w("The chalice devours your life energy.");
|
||||||
Sample.INSTANCE.play(Assets.SND_CURSED);
|
Sample.INSTANCE.play(Assets.SND_CURSED);
|
||||||
hero.sprite.emitter().burst( ShadowParticle.CURSE, 6 );
|
hero.sprite.emitter().burst( ShadowParticle.CURSE, 12 );
|
||||||
}
|
}
|
||||||
|
|
||||||
if (damage > 0)
|
if (damage > 0)
|
||||||
|
|
|
@ -26,7 +26,6 @@ import java.util.ArrayList;
|
||||||
*/
|
*/
|
||||||
public class HornOfPlenty extends Artifact {
|
public class HornOfPlenty extends Artifact {
|
||||||
|
|
||||||
//TODO: final surface testing
|
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "Horn of Plenty";
|
name = "Horn of Plenty";
|
||||||
|
|
|
@ -26,7 +26,6 @@ import java.util.Collections;
|
||||||
* Created by debenhame on 08/09/2014.
|
* Created by debenhame on 08/09/2014.
|
||||||
*/
|
*/
|
||||||
public class SandalsOfNature extends Artifact {
|
public class SandalsOfNature extends Artifact {
|
||||||
//TODO: tweak the greaves sprite a little, it's too neat/needs to be more messy.
|
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "Sandals of Nature";
|
name = "Sandals of Nature";
|
||||||
|
|
|
@ -24,7 +24,6 @@ import java.util.ArrayList;
|
||||||
* Created by debenhame on 08/09/2014.
|
* Created by debenhame on 08/09/2014.
|
||||||
*/
|
*/
|
||||||
public class TalismanOfForesight extends Artifact {
|
public class TalismanOfForesight extends Artifact {
|
||||||
//TODO: shade sprite.
|
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "Talisman of Foresight";
|
name = "Talisman of Foresight";
|
||||||
|
|