Rock cutter is available earlier for ppl used to modded ore doubling. Closes #2463
This commit is contained in:
parent
7d415eb163
commit
a9850d0d61
5 changed files with 11 additions and 11 deletions
|
@ -34,7 +34,7 @@ import reborncore.common.util.ItemUtils;
|
||||||
import techreborn.items.tool.ChainsawItem;
|
import techreborn.items.tool.ChainsawItem;
|
||||||
import techreborn.items.tool.DrillItem;
|
import techreborn.items.tool.DrillItem;
|
||||||
import techreborn.items.tool.JackhammerItem;
|
import techreborn.items.tool.JackhammerItem;
|
||||||
import techreborn.items.tool.advanced.RockCutterItem;
|
import techreborn.items.tool.basic.RockCutterItem;
|
||||||
import techreborn.items.tool.basic.ElectricTreetapItem;
|
import techreborn.items.tool.basic.ElectricTreetapItem;
|
||||||
import techreborn.items.tool.industrial.NanosaberItem;
|
import techreborn.items.tool.industrial.NanosaberItem;
|
||||||
import techreborn.items.tool.industrial.OmniToolItem;
|
import techreborn.items.tool.industrial.OmniToolItem;
|
||||||
|
|
|
@ -242,10 +242,10 @@ public class TechRebornConfig {
|
||||||
public static int omniToolHitCost = 125;
|
public static int omniToolHitCost = 125;
|
||||||
|
|
||||||
@Config(config = "items", category = "power", key = "rockCutterCharge", comment = "Energy Capacity for Rock Cutter")
|
@Config(config = "items", category = "power", key = "rockCutterCharge", comment = "Energy Capacity for Rock Cutter")
|
||||||
public static int rockCutterCharge = 400_000;
|
public static int rockCutterCharge = 10_000;
|
||||||
|
|
||||||
@Config(config = "items", category = "power", key = "rockCutterCost", comment = "Energy Cost for Rock Cutter")
|
@Config(config = "items", category = "power", key = "rockCutterCost", comment = "Energy Cost for Rock Cutter")
|
||||||
public static int rockCutterCost = 500;
|
public static int rockCutterCost = 10;
|
||||||
|
|
||||||
@Config(config = "items", category = "power", key = "lapotronPackCharge", comment = "Energy Capacity for Lapotron Pack")
|
@Config(config = "items", category = "power", key = "lapotronPackCharge", comment = "Energy Capacity for Lapotron Pack")
|
||||||
public static int lapotronPackCharge = 100_000_000;
|
public static int lapotronPackCharge = 100_000_000;
|
||||||
|
|
|
@ -46,7 +46,7 @@ import techreborn.items.armor.QuantumSuitItem;
|
||||||
import techreborn.items.armor.TRArmourItem;
|
import techreborn.items.armor.TRArmourItem;
|
||||||
import techreborn.items.tool.*;
|
import techreborn.items.tool.*;
|
||||||
import techreborn.items.tool.advanced.AdvancedJackhammerItem;
|
import techreborn.items.tool.advanced.AdvancedJackhammerItem;
|
||||||
import techreborn.items.tool.advanced.RockCutterItem;
|
import techreborn.items.tool.basic.RockCutterItem;
|
||||||
import techreborn.items.tool.basic.ElectricTreetapItem;
|
import techreborn.items.tool.basic.ElectricTreetapItem;
|
||||||
import techreborn.items.tool.industrial.*;
|
import techreborn.items.tool.industrial.*;
|
||||||
import techreborn.items.tool.vanilla.*;
|
import techreborn.items.tool.vanilla.*;
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
* SOFTWARE.
|
* SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package techreborn.items.tool.advanced;
|
package techreborn.items.tool.basic;
|
||||||
|
|
||||||
import net.fabricmc.api.EnvType;
|
import net.fabricmc.api.EnvType;
|
||||||
import net.fabricmc.api.Environment;
|
import net.fabricmc.api.Environment;
|
||||||
|
@ -53,7 +53,7 @@ public class RockCutterItem extends PickaxeItem implements EnergyHolder, ItemDur
|
||||||
public static final int maxCharge = TechRebornConfig.rockCutterCharge;
|
public static final int maxCharge = TechRebornConfig.rockCutterCharge;
|
||||||
public int cost = TechRebornConfig.rockCutterCost;
|
public int cost = TechRebornConfig.rockCutterCost;
|
||||||
|
|
||||||
// 400k FE with 1k FE\t charge rate
|
// 10k Energy with 128 E\t charge rate
|
||||||
public RockCutterItem() {
|
public RockCutterItem() {
|
||||||
// combat stats same as for diamond pickaxe. Fix for #2468
|
// combat stats same as for diamond pickaxe. Fix for #2468
|
||||||
super(ToolMaterials.DIAMOND, 1, -2.8F, new Item.Settings().group(TechReborn.ITEMGROUP).maxCount(1).maxDamage(-1));
|
super(ToolMaterials.DIAMOND, 1, -2.8F, new Item.Settings().group(TechReborn.ITEMGROUP).maxCount(1).maxDamage(-1));
|
||||||
|
@ -153,7 +153,7 @@ public class RockCutterItem extends PickaxeItem implements EnergyHolder, ItemDur
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public EnergyTier getTier() {
|
public EnergyTier getTier() {
|
||||||
return EnergyTier.EXTREME;
|
return EnergyTier.MEDIUM;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
|
@ -1,16 +1,16 @@
|
||||||
{
|
{
|
||||||
"type": "minecraft:crafting_shaped",
|
"type": "minecraft:crafting_shaped",
|
||||||
"pattern": [
|
"pattern": [
|
||||||
"DT ",
|
"DN ",
|
||||||
"DT ",
|
"DN ",
|
||||||
"DCB"
|
"DCB"
|
||||||
],
|
],
|
||||||
"key": {
|
"key": {
|
||||||
"D": {
|
"D": {
|
||||||
"tag": "c:diamond_dusts"
|
"tag": "c:diamond_dusts"
|
||||||
},
|
},
|
||||||
"T": {
|
"N": {
|
||||||
"tag": "c:titanium_ingots"
|
"item": "minecraft:gold_nugget"
|
||||||
},
|
},
|
||||||
"C": {
|
"C": {
|
||||||
"item": "techreborn:electronic_circuit"
|
"item": "techreborn:electronic_circuit"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue