minecraft server init
This commit is contained in:
6
config/pneumaticcraft/AmadronOffersPeriodic.cfg
Normal file
6
config/pneumaticcraft/AmadronOffersPeriodic.cfg
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"description": "Offers in here are periodic. \u003ctimesPerDay\u003e times per Minecraft day, \u003coffersPer\u003e random offers are selected from here.",
|
||||
"timesPerDay": 1,
|
||||
"offersPer": 20,
|
||||
"offers": []
|
||||
}
|
119
config/pneumaticcraft/AmadronOffersStatic.cfg
Normal file
119
config/pneumaticcraft/AmadronOffersStatic.cfg
Normal file
@ -0,0 +1,119 @@
|
||||
{
|
||||
"description": "Offers in here are static, meaning they will always exist to be traded with, unlike periodic offers.",
|
||||
"offers": [
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 8
|
||||
},
|
||||
"output": {
|
||||
"id": "pneumaticcraft:pcb_blueprint",
|
||||
"damage": 0,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 8
|
||||
},
|
||||
"output": {
|
||||
"id": "pneumaticcraft:assembly_program",
|
||||
"damage": 0,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 8
|
||||
},
|
||||
"output": {
|
||||
"id": "pneumaticcraft:assembly_program",
|
||||
"damage": 1,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 14
|
||||
},
|
||||
"output": {
|
||||
"id": "pneumaticcraft:assembly_program",
|
||||
"damage": 2,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "oil",
|
||||
"amount": 10000
|
||||
},
|
||||
"output": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "diesel",
|
||||
"amount": 8000
|
||||
},
|
||||
"output": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "kerosene",
|
||||
"amount": 5000
|
||||
},
|
||||
"output": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 2
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "lubricant",
|
||||
"amount": 8000
|
||||
},
|
||||
"output": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 1
|
||||
},
|
||||
"output": {
|
||||
"id": "oil",
|
||||
"amount": 1000
|
||||
}
|
||||
},
|
||||
{
|
||||
"input": {
|
||||
"id": "stevescarts:modulecomponents",
|
||||
"damage": 21,
|
||||
"amount": 5
|
||||
},
|
||||
"output": {
|
||||
"id": "lubricant",
|
||||
"amount": 3000
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
7
config/pneumaticcraft/AmadronTradingSettings.cfg
Normal file
7
config/pneumaticcraft/AmadronTradingSettings.cfg
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"description": "Various options to limit the ability of the trading system, to manage spam/abuse on public servers. Most can be changed client-side as well to for example stop notifications if the client wishes. Limitations apply to non-OP players only.",
|
||||
"maxTradesPerPlayer": 50,
|
||||
"notifyOfTradeAddition": true,
|
||||
"notifyOfTradeRemoval": true,
|
||||
"notifyOfDealMade": true
|
||||
}
|
115
config/pneumaticcraft/BlockHeatProperties.cfg
Normal file
115
config/pneumaticcraft/BlockHeatProperties.cfg
Normal file
@ -0,0 +1,115 @@
|
||||
{
|
||||
"Description": [
|
||||
"Defines custom heat properties of blocks & fluids, which are keyed by either a blockstate name or a fluid name.",
|
||||
"Block names MUST be in the form <modid>:<blockname>, fluid names are just a <fluidname>",
|
||||
"Blockstate variants should only be used to distinguish subtypes of blocks, never properties such as block-facing.",
|
||||
"If you're not sure of a fluid name, hold a bucket of the fluid, and type '/dumpNBT'.",
|
||||
"'temperature' is mandatory for non-fluids; for fluids it uses the fluid's temperature (mod-defined) by default",
|
||||
"'thermalResistance' defines how quickly heat moves into or out of the block",
|
||||
"'totalHeat' defines the max amount of heat that can be removed or added before the block undergoes a state change",
|
||||
"'transformHot' and 'transformCold' define what block/fluid this will become on a state change",
|
||||
"'transformHotFlowing' and 'transformColdFlowing' are for fluids only and apply to flowing (non-source) fluid blocks"
|
||||
],
|
||||
"defaults": {
|
||||
"blockThermalResistance": 500,
|
||||
"fluidThermalResistance": 100,
|
||||
"fluidTotalHeat": 10000,
|
||||
"ambientTemperatureBiomeModifier": 25.0,
|
||||
"ambientTemperatureHeightModifier": 0.1
|
||||
},
|
||||
"blocks": {
|
||||
"minecraft:torch": {
|
||||
"temperature": 1700,
|
||||
"thermalResistance": 100000
|
||||
},
|
||||
"minecraft:ice": {
|
||||
"temperature": 263,
|
||||
"thermalResistance": 500
|
||||
},
|
||||
"minecraft:snow": {
|
||||
"temperature": 268,
|
||||
"thermalResistance": 1000
|
||||
},
|
||||
"minecraft:snow_layer": {
|
||||
"temperature": 268,
|
||||
"thermalResistance": 50,
|
||||
"totalHeat": 150,
|
||||
"transformHot": "minecraft:air"
|
||||
},
|
||||
"minecraft:packed_ice": {
|
||||
"temperature": 253,
|
||||
"thermalResistance": 250
|
||||
},
|
||||
"minecraft:magma": {
|
||||
"temperature": 1300,
|
||||
"thermalResistance": 500,
|
||||
"transformCold": "minecraft:netherrack",
|
||||
"totalHeat": 2500
|
||||
},
|
||||
"minecraft:fire": {
|
||||
"temperature": 1700,
|
||||
"thermalResistance": 1000,
|
||||
"transformCold": "minecraft:air",
|
||||
"totalHeat": 1000
|
||||
},
|
||||
"ic2:resource[type=uranium_block]": {
|
||||
"temperature": 473,
|
||||
"thermalResistance": 500,
|
||||
"transformCold": "ic2:resource[type=lead_block]",
|
||||
"totalHeat": 20000
|
||||
},
|
||||
"immersiveengineering:storage[type=uranium]": {
|
||||
"temperature": 473,
|
||||
"thermalResistance": 500,
|
||||
"transformCold": "immersiveengineering:storage[type=lead]",
|
||||
"totalHeat": 20000
|
||||
},
|
||||
"natura:nether_heat_sand": {
|
||||
"temperature": 750,
|
||||
"thermalResistance": 500,
|
||||
"transformCold": "minecraft:sand",
|
||||
"totalHeat": 1000
|
||||
},
|
||||
"ic2hot_coolant": {
|
||||
"totalHeat": 20000,
|
||||
"thermalResistance": 25,
|
||||
"transformCold": "ic2coolant"
|
||||
},
|
||||
"ic2coolant": {
|
||||
"totalHeat": 20000,
|
||||
"thermalResistance": 25,
|
||||
"transformHot": "ic2hot_coolant"
|
||||
},
|
||||
"ic2steam": {
|
||||
"transformHot": "ic2superheated_steam",
|
||||
"transformCold": "water"
|
||||
},
|
||||
"ic2superheated_steam": {
|
||||
"transformCold": "ic2steam"
|
||||
},
|
||||
"thermalfoundation:storage_alloy[type=enderium]": {
|
||||
"totalHeat": 20000,
|
||||
"thermalResistance": 100,
|
||||
"temperature": 223,
|
||||
"transformHot": "thermalfoundation:storage[type=platinum]"
|
||||
},
|
||||
"cryotheum": {
|
||||
"transformHot": "minecraft:snow"
|
||||
},
|
||||
"quark:blaze_lantern": {
|
||||
"temperature": 1000,
|
||||
"totalHeat": 2500,
|
||||
"transformCold": "minecraft:glowstone"
|
||||
},
|
||||
"quark:biome_cobblestone[variant=fire_stone]": {
|
||||
"temperature": 423,
|
||||
"totalHeat": 5000,
|
||||
"transformCold": "minecraft:cobblestone"
|
||||
},
|
||||
"quark:biome_cobblestone[variant=icy_stone]": {
|
||||
"temperature": 223,
|
||||
"totalHeat": 5000,
|
||||
"transformHot": "minecraft:cobblestone"
|
||||
}
|
||||
}
|
||||
}
|
6
config/pneumaticcraft/HelmetWidgetDefaults.cfg
Normal file
6
config/pneumaticcraft/HelmetWidgetDefaults.cfg
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"description": "Tracks the active upgrades for the Pneumatic Armor",
|
||||
"active": [
|
||||
"pneumaticHelmet.upgrade.coreComponents"
|
||||
]
|
||||
}
|
4
config/pneumaticcraft/MicromissileDefaults.cfg
Normal file
4
config/pneumaticcraft/MicromissileDefaults.cfg
Normal file
@ -0,0 +1,4 @@
|
||||
{
|
||||
"Description": "Stores default Micromissile settings on a per-player basis",
|
||||
"defaults": {}
|
||||
}
|
35
config/pneumaticcraft/PneumaticArmorHUDLayout.cfg
Normal file
35
config/pneumaticcraft/PneumaticArmorHUDLayout.cfg
Normal file
@ -0,0 +1,35 @@
|
||||
{
|
||||
"Description": "Stores the layout of Pneumatic Armor HUD elements",
|
||||
"stats": {
|
||||
"power": {
|
||||
"x": -0.0010416667,
|
||||
"y": 0.0037037036,
|
||||
"leftSided": true
|
||||
},
|
||||
"message": {
|
||||
"x": 0.0020833334,
|
||||
"y": 0.0037037036,
|
||||
"leftSided": false
|
||||
},
|
||||
"blockTracker": {
|
||||
"x": -0.0010416667,
|
||||
"y": 0.085185185,
|
||||
"leftSided": true
|
||||
},
|
||||
"entityTracker": {
|
||||
"x": -0.0010416667,
|
||||
"y": 0.16666667,
|
||||
"leftSided": true
|
||||
},
|
||||
"itemSearch": {
|
||||
"x": -0.0010416667,
|
||||
"y": 0.031481482,
|
||||
"leftSided": true
|
||||
},
|
||||
"airCon": {
|
||||
"x": -0.026041666,
|
||||
"y": 0.0037037036,
|
||||
"leftSided": false
|
||||
}
|
||||
}
|
||||
}
|
5
config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg
Normal file
5
config/pneumaticcraft/ProgrammingPuzzleBlacklist.cfg
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"description": "In the \u0027blacklist\u0027 tag you can put the programming puzzle names that need to blacklisted from this instance. When they were used in existing programs already they will be deleted. A list of all programming puzzle names can be seen in \u0027allWidgets\u0027.",
|
||||
"allWidgets": [],
|
||||
"blacklist": []
|
||||
}
|
28
config/pneumaticcraft/thirdparty.cfg
Normal file
28
config/pneumaticcraft/thirdparty.cfg
Normal file
@ -0,0 +1,28 @@
|
||||
{
|
||||
"description": "Enable/disable integration of specific third-party mods",
|
||||
"enabled_mods": {
|
||||
"industrialforegoing": true,
|
||||
"toughasnails": false,
|
||||
"theoneprobe": false,
|
||||
"immersiveengineering": true,
|
||||
"baubles": true,
|
||||
"computercraft": false,
|
||||
"waila": true,
|
||||
"opencomputers|core": false,
|
||||
"botania": false,
|
||||
"crafttweaker": true,
|
||||
"cofhcore": false,
|
||||
"thaumcraft": false,
|
||||
"enderio": false,
|
||||
"immersivepetroleum": true,
|
||||
"mekanism": true,
|
||||
"igwmod": false,
|
||||
"ic2": false,
|
||||
"opencomputers": false,
|
||||
"patchouli": false,
|
||||
"buildcraftcore": true,
|
||||
"forestry": false,
|
||||
"openblocks": false,
|
||||
"appliedenergistics2": true
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user