remove some jsons again
This commit is contained in:
parent
05a47c183a
commit
01e4ed5168
21 changed files with 85 additions and 300 deletions
|
|
@ -131,35 +131,48 @@ const itemTypeToHeat = {
|
|||
}
|
||||
|
||||
const metalToSpecs = {
|
||||
"bismuth" : { forging_temperature: 162, welding_temperature: 216, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"brass" : { forging_temperature: 558, welding_temperature: 744, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"gold" : { forging_temperature: 636, welding_temperature: 848, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"nickel" : { forging_temperature: 872, welding_temperature: 1162, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"rose_gold" : { forging_temperature: 576, welding_temperature: 768, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"silver" : { forging_temperature: 577, welding_temperature: 769, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"tin" : { forging_temperature: 138, welding_temperature: 184, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"zinc" : { forging_temperature: 252, welding_temperature: 336, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"sterling_silver": { forging_temperature: 570, welding_temperature: 760, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"copper" : { forging_temperature: 648, welding_temperature: 864, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"bismuth_bronze" : { forging_temperature: 591, welding_temperature: 788, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"bronze" : { forging_temperature: 570, welding_temperature: 760, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"black_bronze" : { forging_temperature: 642, welding_temperature: 856, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"wrought_iron" : { forging_temperature: 921, welding_temperature: 1228, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"cast_iron" : { forging_temperature: 921, welding_temperature: 1228, customName: "iron", props: [].concat(defaultProperty, partProperty) },
|
||||
"pig_iron" : { forging_temperature: 921, welding_temperature: 1228, customName: null, props: defaultProperty},
|
||||
"steel" : { forging_temperature: 924, welding_temperature: 1232, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"high_carbon_black_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"high_carbon_red_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"high_carbon_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"weak_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"weak_red_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"weak_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: defaultProperty },
|
||||
"black_steel" : { forging_temperature: 891, welding_temperature: 1188, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"red_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"blue_steel" : { forging_temperature: 924, welding_temperature: 1232, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"unknown" : { forging_temperature: 240, welding_temperature: 320, customName: null, props: defaultProperty }
|
||||
"bismuth" : { forging_temperature: 162, welding_temperature: 216, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"brass" : { forging_temperature: 558, welding_temperature: 744, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"gold" : { forging_temperature: 636, welding_temperature: 848, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"nickel" : { forging_temperature: 872, welding_temperature: 1162, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"rose_gold" : { forging_temperature: 576, welding_temperature: 768, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"silver" : { forging_temperature: 577, welding_temperature: 769, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"tin" : { forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"zinc" : { forging_temperature: 252, welding_temperature: 336, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"sterling_silver": { forging_temperature: 570, welding_temperature: 760, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty) },
|
||||
"copper" : { forging_temperature: 648, welding_temperature: 864, hasOre: true, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"bismuth_bronze" : { forging_temperature: 591, welding_temperature: 788, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"bronze" : { forging_temperature: 570, welding_temperature: 760, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"black_bronze" : { forging_temperature: 642, welding_temperature: 856, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"wrought_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"cast_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: true, customName: "iron", props: [].concat(defaultProperty, partProperty) },
|
||||
"pig_iron" : { forging_temperature: 921, welding_temperature: 1228, hasOre: false, customName: null, props: defaultProperty},
|
||||
"steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"high_carbon_black_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"high_carbon_red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"high_carbon_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"weak_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"weak_red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"weak_blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: defaultProperty },
|
||||
"black_steel" : { forging_temperature: 891, welding_temperature: 1188, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"red_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"blue_steel" : { forging_temperature: 924, welding_temperature: 1232, hasOre: false, customName: null, props: [].concat(defaultProperty, partProperty, armorProperty, toolProperty, utilityProperty) },
|
||||
"unknown" : { forging_temperature: 240, welding_temperature: 320, hasOre: false, customName: null, props: defaultProperty },
|
||||
"cassiterite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"garnierite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"hematite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"limonite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"magnetite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"malachite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"pyrite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"sphalerite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []},
|
||||
"tetrahedrite" : {forging_temperature: 138, welding_temperature: 184, hasOre: true, customName: null, props: []}
|
||||
}
|
||||
|
||||
const asd = [
|
||||
|
||||
]
|
||||
|
||||
const removeAllTagsItems = [
|
||||
'tfc:ore/amethyst',
|
||||
'tfc:ore/diamond',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue