Boblet 680678b5b2 🅱️attery
2024-08-19 16:38:29 +02:00

14 lines
263 B
Java

package com.hbm.items.armor;
import com.hbm.handler.ArmorModHandler;
public class ItemModBattery extends ItemArmorMod {
public double mod;
public ItemModBattery(double mod) {
super(ArmorModHandler.battery, true, true, true, true);
this.mod = mod;
}
}