This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
EnergonRelics/src/main/java/com/thebrokenrail/energonrelics/config/HardcodedConfig.java

31 lines
1.1 KiB
Java
Raw Normal View History

package com.thebrokenrail.energonrelics.config;
2020-07-13 20:37:21 +00:00
2020-07-22 18:07:29 +00:00
import net.minecraft.item.Item;
import net.minecraft.item.Items;
public class HardcodedConfig {
2020-07-13 20:37:21 +00:00
public static final int POWER_RANGE = 64;
public static final int ENERGON_LIGHT_ENERGY_REQUIRED = 5;
public static final long SOLAR_PANEL_MAX_ENERGY_OUTPUT = 50;
public static final long BATTERY_CHARGE_RATE = 40;
public static final int REACTOR_TIME = 2400;
public static final int REACTOR_ENERGY_OUTPUT = 250;
2020-07-15 22:44:49 +00:00
public static final int DEFENSIVE_LASER_RANGE = 28;
2020-07-22 18:07:29 +00:00
public static final long DEFENSIVE_LASER_IDLE_ENERGY_REQUIRED = 32;
public static final long DEFENSIVE_LASER_FIRE_ENERGY_REQUIRED = 64;
public static final long BLOCK_BREAKER_ENERGY_REQUIRED_IDLE = 25;
public static final long BLOCK_BREAKER_ENERGY_REQUIRED_BREAK = 36;
public static final int BLOCK_BREAKER_TIME = 48;
public static final Item BLOCK_BREAKER_ITEM = Items.IRON_PICKAXE;
2020-07-23 17:39:40 +00:00
2020-07-23 21:53:35 +00:00
public static final long LIGHTNING_ROD_ENERGY_OUTPUT = 40000;
2020-07-23 17:39:40 +00:00
public static final double LIGHTNING_ROD_CHANCE = 0.00005d;
public static final int LIGHTNING_ROD_COOLDOWN = 5;
2020-07-13 20:37:21 +00:00
}