DREVCKSFICKEKACKEKACKE
This commit is contained in:
parent
a3a8d690e5
commit
4cbb91fd43
Binary file not shown.
Before Width: | Height: | Size: 967 B |
Binary file not shown.
Before Width: | Height: | Size: 832 B |
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,18 +0,0 @@
|
|||
package de.teamteamteam.spacescooter.entity.item;
|
||||
|
||||
import de.teamteamteam.spacescooter.entity.Player;
|
||||
|
||||
public class TestItem2 extends Item {
|
||||
|
||||
public static int chance = 2;
|
||||
|
||||
public TestItem2(int x, int y) {
|
||||
super(x, y);
|
||||
this.setImage("images/items/item2.png");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void itemCollected(Player player) {
|
||||
player.setShootDamage(player.getShootDamage()+5);
|
||||
}
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
package de.teamteamteam.spacescooter.entity.item;
|
||||
|
||||
import de.teamteamteam.spacescooter.entity.Player;
|
||||
|
||||
public class TestItem3 extends Item {
|
||||
|
||||
public static int chance = 3;
|
||||
|
||||
public TestItem3(int x, int y) {
|
||||
super(x, y);
|
||||
this.setImage("images/items/item3.png");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void itemCollected(Player player) {
|
||||
player.increaseHealthPoints(15);
|
||||
}
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
package de.teamteamteam.spacescooter.entity.item;
|
||||
|
||||
import de.teamteamteam.spacescooter.entity.Player;
|
||||
|
||||
public class TestItem4 extends Item {
|
||||
|
||||
public static int chance = 4;
|
||||
|
||||
public TestItem4(int x, int y) {
|
||||
super(x, y);
|
||||
this.setImage("images/items/item4.png");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void itemCollected(Player player) {
|
||||
player.setShootDamage(player.getShootDamage()+5);
|
||||
}
|
||||
}
|
|
@ -1,19 +0,0 @@
|
|||
package de.teamteamteam.spacescooter.entity.item;
|
||||
|
||||
import de.teamteamteam.spacescooter.entity.Player;
|
||||
|
||||
public class TestItem5 extends Item {
|
||||
|
||||
public static int chance = 2;
|
||||
|
||||
public TestItem5(int x, int y) {
|
||||
super(x, y);
|
||||
this.setImage("images/items/item5.png");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void itemCollected(Player player) {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue