mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
25 lines
579 B
Java
25 lines
579 B
Java
package com.hbm.handler;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
public class BulletConfiguration {
|
|
|
|
//what item this specific configuration consumes
|
|
public Item ammo;
|
|
|
|
//damage bounds
|
|
public float dmgMin;
|
|
public float dmgMax;
|
|
|
|
//whether the projectile should be able to bounce off of blocks
|
|
public boolean doesRicochet;
|
|
//the maximum angle at which the projectile should bounce
|
|
public double ricochetAngle;
|
|
|
|
//whether or not the bullet should penetrate mobs
|
|
public boolean doesPenetrate;
|
|
//whether or not the bullet should break glass
|
|
public boolean doesBreakGlass;
|
|
|
|
}
|