minecraft server init
This commit is contained in:
14
scripts/crafttweaker/oredict/mods/buildcraft.zs
Normal file
14
scripts/crafttweaker/oredict/mods/buildcraft.zs
Normal file
@ -0,0 +1,14 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
<ore:gearWood>.add(<buildcraftcore:gear_wood:0>);
|
||||
<ore:gearStone>.add(<buildcraftcore:gear_stone:0>);
|
||||
<ore:gearIron>.add(<buildcraftcore:gear_iron:0>);
|
||||
<ore:gearGold>.add(<buildcraftcore:gear_gold:0>);
|
||||
<ore:gearDiamond>.add(<buildcraftcore:gear_diamond:0>);
|
39
scripts/crafttweaker/oredict/mods/chisel.zs
Normal file
39
scripts/crafttweaker/oredict/mods/chisel.zs
Normal file
@ -0,0 +1,39 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
import crafttweaker.item.IItemStack;
|
||||
import crafttweaker.oredict.IOreDictEntry;
|
||||
|
||||
// Usage: <chiselBlock>: <oreDict>
|
||||
var oreDictChiselPairs as IOreDictEntry[IItemStack] = {
|
||||
<chisel:blockaluminum:0>: <ore:blockAluminum>,
|
||||
<chisel:blockbronze:0>: <ore:blockBronze>,
|
||||
<chisel:blockcobalt:0>: <ore:blockCobalt>,
|
||||
<chisel:blockcopper:0>: <ore:blockCopper>,
|
||||
<chisel:diamond:0>: <ore:blockDiamond>,
|
||||
<chisel:blockelectrum:0>: <ore:blockElectrum>,
|
||||
<chisel:emerald:0>: <ore:blockEmerald>,
|
||||
<chisel:gold:0>: <ore:blockGold>,
|
||||
<chisel:iron:0>: <ore:blockIron>,
|
||||
<chisel:lapis:0>: <ore:blockLapis>,
|
||||
<chisel:blocklead:0>: <ore:blockLead>,
|
||||
<chisel:blocknickel:0>: <ore:blockNickel>,
|
||||
<chisel:blockplatinum:0>: <ore:blockPlatinum>,
|
||||
<chisel:redstone:0>: <ore:blockRedstone>,
|
||||
<chisel:redstone1:0>: <ore:blockRedstone>,
|
||||
<chisel:blocksilver:0>: <ore:blockSilver>,
|
||||
<chisel:blocksteel:0>: <ore:blockSteel>,
|
||||
<chisel:blocktin:0>: <ore:blockTin>
|
||||
};
|
||||
|
||||
for chiselBlock, oreDict in oreDictChiselPairs {
|
||||
for chiselBlockSubItem in chiselBlock.definition.subItems {
|
||||
oreDict.remove(chiselBlockSubItem);
|
||||
}
|
||||
}
|
27
scripts/crafttweaker/oredict/mods/extraplanets.zs
Normal file
27
scripts/crafttweaker/oredict/mods/extraplanets.zs
Normal file
@ -0,0 +1,27 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
|
||||
// Heavy Oxygen Tanks
|
||||
<ore:tankOxygenHeavy>.add(<galacticraftcore:oxygen_tank_heavy_full:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_white:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_orange:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_magenta:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_light_blue:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_yellow:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_pink:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_gray:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_light_gray:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_cyan:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_purple:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_blue:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_brown:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_green:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_lime:*>);
|
||||
<ore:tankOxygenHeavy>.add(<extraplanets:oxygen_tank_heavy_full_black:*>);
|
17
scripts/crafttweaker/oredict/mods/galacticraft.zs
Normal file
17
scripts/crafttweaker/oredict/mods/galacticraft.zs
Normal file
@ -0,0 +1,17 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
<ore:ingotDesh>.add(<galacticraftplanets:item_basic_mars:2>);
|
||||
|
||||
// Remove Meteoric Iron Block from ore oredict... because... why...
|
||||
<ore:oreMeteoricIron>.add(<galacticraftcore:basic_block_core:12>);
|
||||
<ore:oreMeteoricIron>.remove(<galacticraftcore:basic_block_core:12>);
|
||||
|
||||
// Add Raw Meteoric Iron to Ore Oredict since it and Fallen Meteor can behave the same.
|
||||
<ore:oreMeteoricIron>.add(<galacticraftcore:meteoric_iron_raw:0>);
|
106
scripts/crafttweaker/oredict/mods/mekanism.zs
Normal file
106
scripts/crafttweaker/oredict/mods/mekanism.zs
Normal file
@ -0,0 +1,106 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
|
||||
// Ores
|
||||
<ore:oreCopper>.add(<mekanism:oreblock:1>);
|
||||
<ore:oreOsmium>.add(<mekanism:oreblock:0>);
|
||||
<ore:oreTin>.add(<mekanism:oreblock:2>);
|
||||
|
||||
// Copper
|
||||
<ore:blockCopper>.add(<mekanism:basicblock:12>);
|
||||
<ore:clumpCopper>.add(<mekanism:clump:3>);
|
||||
<ore:crystalCopper>.add(<mekanism:crystal:3>);
|
||||
<ore:dustDirtyCopper>.add(<mekanism:dirtydust:3>);
|
||||
<ore:dustCopper>.add(<mekanism:dust:3>);
|
||||
<ore:ingotCopper>.add(<mekanism:ingot:5>);
|
||||
<ore:nuggetCopper>.add(<mekanism:nugget:5>);
|
||||
<ore:shardCopper>.add(<mekanism:shard:3>);
|
||||
|
||||
// Gold
|
||||
<ore:clumpGold>.add(<mekanism:clump:1>);
|
||||
<ore:crystalGold>.add(<mekanism:crystal:1>);
|
||||
<ore:dustDirtyGold>.add(<mekanism:dirtydust:1>);
|
||||
<ore:dustGold>.add(<mekanism:dust:1>);
|
||||
<ore:shardGold>.add(<mekanism:shard:1>);
|
||||
|
||||
// Iron
|
||||
<ore:clumpIron>.add(<mekanism:clump:0>);
|
||||
<ore:crystalIron>.add(<mekanism:crystal:0>);
|
||||
<ore:dustDirtyIron>.add(<mekanism:dirtydust:0>);
|
||||
<ore:dustIron>.add(<mekanism:dust:0>);
|
||||
<ore:shardIron>.add(<mekanism:shard:0>);
|
||||
|
||||
// Lead
|
||||
<ore:clumpLead>.add(<mekanism:clump:6>);
|
||||
<ore:crystalLead>.add(<mekanism:crystal:6>);
|
||||
<ore:dustDirtyLead>.add(<mekanism:dirtydust:6>);
|
||||
<ore:dustLead>.add(<mekanism:dust:6>);
|
||||
<ore:shardLead>.add(<mekanism:shard:6>);
|
||||
|
||||
// Osmium
|
||||
<ore:blockOsmium>.add(<mekanism:basicblock:0>);
|
||||
<ore:clumpOsmium>.add(<mekanism:clump:2>);
|
||||
<ore:crystalOsmium>.add(<mekanism:crystal:2>);
|
||||
<ore:dustDirtyOsmium>.add(<mekanism:dirtydust:2>);
|
||||
<ore:dustOsmium>.add(<mekanism:dust:2>);
|
||||
<ore:ingotOsmium>.add(<mekanism:ingot:1>);
|
||||
<ore:nuggetOsmium>.add(<mekanism:nugget:1>);
|
||||
<ore:shardOsmium>.add(<mekanism:shard:2>);
|
||||
|
||||
// Silver
|
||||
<ore:clumpSilver>.add(<mekanism:clump:5>);
|
||||
<ore:crystalSilver>.add(<mekanism:crystal:5>);
|
||||
<ore:dustDirtySilver>.add(<mekanism:dirtydust:5>);
|
||||
<ore:dustSilver>.add(<mekanism:dust:5>);
|
||||
<ore:shardSilver>.add(<mekanism:shard:5>);
|
||||
|
||||
// Tin
|
||||
<ore:blockTin>.add(<mekanism:basicblock:13>);
|
||||
<ore:clumpTin>.add(<mekanism:clump:4>);
|
||||
<ore:crystalTin>.add(<mekanism:crystal:4>);
|
||||
<ore:dustDirtyTin>.add(<mekanism:dirtydust:4>);
|
||||
<ore:dustTin>.add(<mekanism:dust:4>);
|
||||
<ore:ingotTin>.add(<mekanism:ingot:6>);
|
||||
<ore:nuggetTin>.add(<mekanism:nugget:6>);
|
||||
<ore:shardTin>.add(<mekanism:shard:4>);
|
||||
|
||||
// Refined Obsidian
|
||||
<ore:blockRefinedObsidian>.add(<mekanism:basicblock:2>);
|
||||
<ore:dustRefinedObsidian>.add(<mekanism:otherdust:5>);
|
||||
<ore:ingotRefinedObsidian>.add(<mekanism:ingot:0>);
|
||||
<ore:nuggetRefinedObsidian>.add(<mekanism:nugget:0>);
|
||||
|
||||
// Refined Glowstone
|
||||
<ore:blockRefinedGlowstone>.add(<mekanism:basicblock:4>);
|
||||
<ore:ingotRefinedGlowstone>.add(<mekanism:ingot:3>);
|
||||
<ore:nuggetRefinedGlowstone>.add(<mekanism:nugget:3>);
|
||||
|
||||
// Bronze
|
||||
<ore:blockBronze>.add(<mekanism:basicblock:1>);
|
||||
<ore:ingotBronze>.add(<mekanism:ingot:2>);
|
||||
<ore:nuggetBronze>.add(<mekanism:nugget:2>);
|
||||
|
||||
// Misc
|
||||
<ore:blockCharcoal>.add(<mekanism:basicblock:3>);
|
||||
<ore:blockSalt>.add(<mekanism:saltblock:0>);
|
||||
<ore:blockSteel>.add(<mekanism:basicblock:5>);
|
||||
<ore:dustDiamond>.add(<mekanism:otherdust:0>);
|
||||
<ore:dustLithium>.add(<mekanism:otherdust:4>);
|
||||
<ore:dustObsidian>.add(<mekanism:otherdust:6>);
|
||||
<ore:dustSalt>.add(<mekanism:salt:0>);
|
||||
<ore:dustSteel>.add(<mekanism:otherdust:1>);
|
||||
<ore:dustSulfur>.add(<mekanism:otherdust:3>);
|
||||
<ore:dustWood>.add(<mekanism:sawdust:0>);
|
||||
<ore:foodSalt>.add(<mekanism:salt:0>);
|
||||
<ore:foodSalt>.add(<mekanism:saltblock:0>);
|
||||
<ore:ingotSteel>.add(<mekanism:ingot:4>);
|
||||
<ore:itemSalt>.add(<mekanism:salt:0>);
|
||||
<ore:nuggetSteel>.add(<mekanism:nugget:4>);
|
||||
<ore:pulpWood>.add(<mekanism:sawdust:0>);
|
102
scripts/crafttweaker/oredict/mods/mystical_agriculture.zs
Normal file
102
scripts/crafttweaker/oredict/mods/mystical_agriculture.zs
Normal file
@ -0,0 +1,102 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
import crafttweaker.item.IItemStack;
|
||||
|
||||
var essenceCrops as IItemStack[] = [
|
||||
<mysticalagradditions:dragon_egg_crop:0>,
|
||||
<mysticalagradditions:nether_star_crop:0>,
|
||||
<mysticalagradditions:tier6_inferium_crop:0>,
|
||||
<mysticalagriculture:aluminum_brass_crop:0>,
|
||||
<mysticalagriculture:aluminum_crop:0>,
|
||||
<mysticalagriculture:aquamarine_crop:0>,
|
||||
<mysticalagriculture:ardite_crop:0>,
|
||||
<mysticalagriculture:basalt_crop:0>,
|
||||
<mysticalagriculture:black_quartz_crop:0>,
|
||||
<mysticalagriculture:blaze_crop:0>,
|
||||
<mysticalagriculture:bronze_crop:0>,
|
||||
<mysticalagriculture:certus_quartz_crop:0>,
|
||||
<mysticalagriculture:chicken_crop:0>,
|
||||
<mysticalagriculture:coal_crop:0>,
|
||||
<mysticalagriculture:cobalt_crop:0>,
|
||||
<mysticalagriculture:constantan_crop:0>,
|
||||
<mysticalagriculture:copper_crop:0>,
|
||||
<mysticalagriculture:cow_crop:0>,
|
||||
<mysticalagriculture:creeper_crop:0>,
|
||||
<mysticalagriculture:desh_crop:0>,
|
||||
<mysticalagriculture:diamond_crop:0>,
|
||||
<mysticalagriculture:dirt_crop:0>,
|
||||
<mysticalagriculture:dye_crop:0>,
|
||||
<mysticalagriculture:electrum_crop:0>,
|
||||
<mysticalagriculture:emerald_crop:0>,
|
||||
<mysticalagriculture:end_crop:0>,
|
||||
<mysticalagriculture:ender_biotite_crop:0>,
|
||||
<mysticalagriculture:enderman_crop:0>,
|
||||
<mysticalagriculture:experience_crop:0>,
|
||||
<mysticalagriculture:fiery_ingot_crop:0>,
|
||||
<mysticalagriculture:fire_crop:0>,
|
||||
<mysticalagriculture:fluix_crop:0>,
|
||||
<mysticalagriculture:ghast_crop:0>,
|
||||
<mysticalagriculture:glowstone_crop:0>,
|
||||
<mysticalagriculture:glowstone_ingot_crop:0>,
|
||||
<mysticalagriculture:gold_crop:0>,
|
||||
<mysticalagriculture:guardian_crop:0>,
|
||||
<mysticalagriculture:ice_crop:0>,
|
||||
<mysticalagriculture:iron_crop:0>,
|
||||
<mysticalagriculture:ironwood_crop:0>,
|
||||
<mysticalagriculture:knightmetal_crop:0>,
|
||||
<mysticalagriculture:knightslime_crop:0>,
|
||||
<mysticalagriculture:lapis_lazuli_crop:0>,
|
||||
<mysticalagriculture:lead_crop:0>,
|
||||
<mysticalagriculture:limestone_crop:0>,
|
||||
<mysticalagriculture:manyullyn_crop:0>,
|
||||
<mysticalagriculture:marble_crop:0>,
|
||||
<mysticalagriculture:meteoric_iron_crop:0>,
|
||||
<mysticalagriculture:nature_crop:0>,
|
||||
<mysticalagriculture:nether_crop:0>,
|
||||
<mysticalagriculture:nether_quartz_crop:0>,
|
||||
<mysticalagriculture:nickel_crop:0>,
|
||||
<mysticalagriculture:obsidian_crop:0>,
|
||||
<mysticalagriculture:osmium_crop:0>,
|
||||
<mysticalagriculture:pig_crop:0>,
|
||||
<mysticalagriculture:platinum_crop:0>,
|
||||
<mysticalagriculture:quartz_enriched_iron_crop:0>,
|
||||
<mysticalagriculture:rabbit_crop:0>,
|
||||
<mysticalagriculture:redstone_crop:0>,
|
||||
<mysticalagriculture:refined_obsidian_crop:0>,
|
||||
<mysticalagriculture:rock_crystal_crop:0>,
|
||||
<mysticalagriculture:sheep_crop:0>,
|
||||
<mysticalagriculture:silicon_crop:0>,
|
||||
<mysticalagriculture:silver_crop:0>,
|
||||
<mysticalagriculture:skeleton_crop:0>,
|
||||
<mysticalagriculture:sky_stone_crop:0>,
|
||||
<mysticalagriculture:slate_crop:0>,
|
||||
<mysticalagriculture:slime_crop:0>,
|
||||
<mysticalagriculture:spider_crop:0>,
|
||||
<mysticalagriculture:starmetal_crop:0>,
|
||||
<mysticalagriculture:steel_crop:0>,
|
||||
<mysticalagriculture:steeleaf_crop:0>,
|
||||
<mysticalagriculture:stone_crop:0>,
|
||||
<mysticalagriculture:tier1_inferium_crop:0>,
|
||||
<mysticalagriculture:tier2_inferium_crop:0>,
|
||||
<mysticalagriculture:tier3_inferium_crop:0>,
|
||||
<mysticalagriculture:tier4_inferium_crop:0>,
|
||||
<mysticalagriculture:tier5_inferium_crop:0>,
|
||||
<mysticalagriculture:tin_crop:0>,
|
||||
<mysticalagriculture:titanium_crop:0>,
|
||||
<mysticalagriculture:uranium_crop:0>,
|
||||
<mysticalagriculture:water_crop:0>,
|
||||
<mysticalagriculture:wither_skeleton_crop:0>,
|
||||
<mysticalagriculture:wood_crop:0>,
|
||||
<mysticalagriculture:zombie_crop:0>
|
||||
];
|
||||
|
||||
for crop in essenceCrops {
|
||||
<ore:cropEssence>.add(crop);
|
||||
}
|
14
scripts/crafttweaker/oredict/mods/primal.zs
Normal file
14
scripts/crafttweaker/oredict/mods/primal.zs
Normal file
@ -0,0 +1,14 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
<ore:wool>.remove(<primal:ovis_atre_wool:0>);
|
||||
<ore:blockWool>.remove(<primal:ovis_atre_wool:0>);
|
||||
<ore:woolOvisAtre>.remove(<primal:ovis_atre_wool:0>);
|
||||
// Yew stick was not set as oredict stick. fixed to allow use in all stick recipes (#4267)
|
||||
<ore:stickWood>.add(<primal:yew_stick>);
|
10
scripts/crafttweaker/oredict/mods/refined_storage.zs
Normal file
10
scripts/crafttweaker/oredict/mods/refined_storage.zs
Normal file
@ -0,0 +1,10 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
<ore:itemSilicon>.add(<refinedstorage:silicon:0>);
|
11
scripts/crafttweaker/oredict/mods/tinkers.zs
Normal file
11
scripts/crafttweaker/oredict/mods/tinkers.zs
Normal file
@ -0,0 +1,11 @@
|
||||
#priority 2600
|
||||
|
||||
/*
|
||||
SevTech: Ages OreDict Mod Script.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
<ore:nuggetKnightslime>.add(<tconstruct:nuggets:3>);
|
||||
<ore:nuggetPigiron>.add(<tconstruct:nuggets:4>);
|
Reference in New Issue
Block a user