More effect tweaks / Unfinished implementation of lancer turret

This commit is contained in:
Anuken
2018-04-04 23:50:27 -04:00
parent 05356776c5
commit 62608bea6c
16 changed files with 340 additions and 308 deletions
@@ -25,6 +25,14 @@ public class AmmoType {
allTypes.add(this);
}
public AmmoType(BulletType result){
this.item = null;
this.liquid = null;
this.bullet = result;
this.quantityMultiplier = 1f;
this.speedMultiplier = 1f;
}
public AmmoType(Item item, BulletType result, float multiplier, float speedMultiplier){
this.item = item;
this.liquid = null;