package com.mygame; public class GreenGem extends Item { public GreenGem(float x, float y) { this.x = x; this.y = y; height = 34; width = 30; maxTime = 300; time = maxTime; } public void update(Player player) { if(time > 0) time--; if(flickerTime > 0) { flickerTime--; if(!flicker) flicker = true; else if(flicker) flicker = false; } if(time <= 0) state = Item.STATE_DEATH; flickerCheck(); collision(player); } public void collision(Player player) { if(state != STATE_DEATH && player.hp > 0 && x + width > player.x && x < (player.x + (float)player.width) && y + height > player.y && y < (player.y + (float)player.height)) { if(player.gems < 999) player.gems++; state = Item.STATE_DEATH; } } }