Updated default configuration
- support for gems with specialization, including Biomes'o plenty - support for more fluids (ThermalFoundation, Forestry, Industrial foregoing, etc.) - support for more ores (Deepresonance, Nuclearcraft, ProjectRed, etc.) - support for GraviSuite (not tested) - code cleanup Fixed missing derelict cables and solar panels
This commit is contained in:
parent
f23c08bbed
commit
6cdbc4819a
7 changed files with 437 additions and 243 deletions
|
@ -414,14 +414,14 @@ public class Dictionary {
|
|||
config.get("item_tags", "ic2:jetpack" , "FlyInSpace NoFallDamage").getString();
|
||||
config.get("item_tags", "ic2:jetpack_electric" , "FlyInSpace NoFallDamage").getString();
|
||||
config.get("item_tags", "ic2:quantum_chestplate" , "FlyInSpace NoFallDamage").getString();
|
||||
config.get("item_tags", "GraviSuite:advJetpack" , "FlyInSpace NoFallDamage").getString(); // not ported
|
||||
config.get("item_tags", "GraviSuite:advNanoChestPlate" , "FlyInSpace NoFallDamage").getString(); // not ported
|
||||
config.get("item_tags", "GraviSuite:graviChestPlate" , "FlyInSpace NoFallDamage").getString(); // not ported
|
||||
config.get("item_tags", "gravisuite:advancedjetpack" , "FlyInSpace NoFallDamage").getString();
|
||||
config.get("item_tags", "gravisuite:advancednanochestplate" , "FlyInSpace NoFallDamage").getString();
|
||||
config.get("item_tags", "gravisuite:gravichestplate" , "FlyInSpace NoFallDamage").getString();
|
||||
|
||||
config.get("item_tags", "ic2:rubber_boots" , "NoFallDamage").getString();
|
||||
config.get("item_tags", "ic2:quantum_boots" , "NoFallDamage").getString();
|
||||
config.get("item_tags", "warpdrive:warp_armor_leggings" , "NoFallDamage").getString();
|
||||
config.get("item_tags", "warpdrive:warp_armor_boots" , "NoFallDamage").getString();
|
||||
config.get("item_tags", "warpdrive:warp_armor_leggings" , "NoFallDamage").getString();
|
||||
config.get("item_tags", "warpdrive:warp_armor_boots" , "NoFallDamage").getString();
|
||||
|
||||
// *** read actual values
|
||||
final String[] taggedItemsName = categoryItemTags.getValues().keySet().toArray(new String[0]);
|
||||
|
|
|
@ -206,7 +206,7 @@ public class WarpDriveConfig {
|
|||
public static EnumTooltipCondition TOOLTIP_ADD_REPAIR_WITH = EnumTooltipCondition.ON_SNEAK;
|
||||
|
||||
// Logging
|
||||
public static boolean LOGGING_JUMP = false;
|
||||
public static boolean LOGGING_JUMP = true;
|
||||
public static boolean LOGGING_JUMPBLOCKS = false;
|
||||
public static boolean LOGGING_ENERGY = false;
|
||||
public static boolean LOGGING_EFFECTS = false;
|
||||
|
|
|
@ -205,18 +205,18 @@ public class WorldGenStructure {
|
|||
final Object inventory = InventoryWrapper.getInventory(tileEntity, null);
|
||||
|
||||
if (inventory == null) {
|
||||
WarpDrive.logger.error(String.format("Unable to fill inventory with LootSet %s %s: %s has no inventory",
|
||||
group,
|
||||
Commons.format(world, blockPos),
|
||||
tileEntity ));
|
||||
WarpDrive.logger.warn(String.format("Unable to fill inventory with LootSet %s %s: %s has no inventory",
|
||||
group,
|
||||
Commons.format(world, blockPos),
|
||||
tileEntity ));
|
||||
return;
|
||||
}
|
||||
|
||||
if (tileEntity.isInvalid()) {
|
||||
WarpDrive.logger.error(String.format("Unable to fill inventory with LootSet %s %s: %s is Invalid",
|
||||
group,
|
||||
Commons.format(world, blockPos),
|
||||
tileEntity ));
|
||||
WarpDrive.logger.warn(String.format("Unable to fill inventory with LootSet %s %s: %s is Invalid",
|
||||
group,
|
||||
Commons.format(world, blockPos),
|
||||
tileEntity ));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://warpdrive.lemadec.org WarpDrive.xsd">
|
||||
|
||||
<!-- all possible overworld ores, mostly for reference purpose -->
|
||||
<!-- all possible overworld ores -->
|
||||
<fillerSet group="overworld_allOres" name="stone">
|
||||
<!-- insert common first, so their ratio/weight takes priority -->
|
||||
<import group="overworld_commonOres" name="stone" />
|
||||
<import group="overworld_uncommonOres" name="stone" />
|
||||
<import group="overworld_rareOres" name="stone" />
|
||||
|
@ -32,44 +33,54 @@
|
|||
</fillerSet>
|
||||
|
||||
<fillerSet group="overworld_commonOres" name="stone">
|
||||
<import group="overworld_commonOres" name="allButVanilla" />
|
||||
<filler block="minecraft:coal_ore" ratio=".06" />
|
||||
<filler block="minecraft:iron_ore" ratio=".04" />
|
||||
<filler block="minecraft:redstone_ore" ratio=".008" mods="!thermalfoundation" />
|
||||
<filler block="minecraft:redstone_ore" ratio=".002" mods="thermalfoundation" />
|
||||
<filler block="thermalfoundation:ore_fluid" metadata="2" ratio=".006" />
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_commonOres" name="allButVanilla">
|
||||
<filler block="arsmagica2:vinteumOre" metadata="0" ratio=".024" mods="arsmagica2,!undergroundbiomes" /><!-- Vinteum -->
|
||||
<filler block="ebwizardry:crystal_ore" metadata="0" ratio=".024" mods="arsmagica2,!undergroundbiomes" /><!-- Magic Crystal -->
|
||||
<filler block="appliedenergistics2:quartz_ore" ratio=".008" mods="appliedenergistics2,!undergroundbiomes" /><!-- Certus quartz -->
|
||||
<filler block="evilcraft:dark_ore" ratio=".016" mods="evilcraft,!undergroundbiomes" /><!-- Dark gem -->
|
||||
<filler block="ic2:resource" metadata="1" ratio=".048" mods="ic2,!immersiveengineering,!Metallurgy" /><!-- Copper -->
|
||||
<filler block="ic2:resource" metadata="3" ratio=".032" mods="ic2,!Metallurgy" /><!-- Tin -->
|
||||
<filler block="ic2:resource" metadata="2" ratio=".024" mods="ic2,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="immersiveengineering:ore" metadata="0" ratio=".048" mods="immersiveengineering,!Metallurgy,!undergroundbiomes" /><!-- Copper -->
|
||||
<filler block="immersiveengineering:ore" metadata="1" ratio=".032" mods="immersiveengineering,!undergroundbiomes" /><!-- Bauxite/Aluminum -->
|
||||
<filler block="immersiveengineering:ore" metadata="2" ratio=".024" mods="immersiveengineering,!undergroundbiomes" /><!-- Lead -->
|
||||
<filler block="thermalfoundation:ore_fluid" metadata="2" ratio=".006" /><!-- Destabilized redstone -->
|
||||
|
||||
<filler block="appliedenergistics2:quartz_ore" ratio=".008" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="0" ratio=".024" mods="arsmagica2" /><!-- Vinteum -->
|
||||
<filler block="ebwizardry:crystal_ore" metadata="0" ratio=".024" mods="ebwizardry" /><!-- Magic Crystal -->
|
||||
<filler block="evilcraft:dark_ore" ratio=".016" mods="evilcraft" /><!-- Dark gem -->
|
||||
<filler block="forestry:resources" metadata="0" ratio=".036" mods="forestry" /><!-- Apatite -->
|
||||
<filler block="LanteaCraft:blockLanteaOre" metadata="2" ratio=".008" mods="LanteaCraft" /><!-- Trinium -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".004" mods="mekanism,!undergroundbiomes" /><!-- Osmium -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".048" mods="mekanism,!Metallurgy,!undergroundbiomes" /><!-- Copper -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".032" mods="mekanism,!Metallurgy,!undergroundbiomes" /><!-- Tin -->
|
||||
<filler block="Metallurgy:base.ore" metadata="0" ratio=".048" mods="Metallurgy,!undergroundbiomes" /><!-- Copper -->
|
||||
<filler block="Metallurgy:base.ore" metadata="1" ratio=".032" mods="Metallurgy,!undergroundbiomes" /><!-- Tin -->
|
||||
<filler block="Metallurgy:base.ore" metadata="2" ratio=".008" mods="Metallurgy,!undergroundbiomes" /><!-- Manganese -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="0" ratio=".020" mods="Metallurgy,!undergroundbiomes" /><!-- Prometheum -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="1" ratio=".012" mods="Metallurgy,!undergroundbiomes" /><!-- Deep Iron -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="2" ratio=".012" mods="Metallurgy,!undergroundbiomes" /><!-- Infuscolium -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="4" ratio=".008" mods="Metallurgy,!undergroundbiomes" /><!-- Oureclase -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="0" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Sulfur -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="1" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Phosphorite -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="2" ratio=".007" mods="Metallurgy,!undergroundbiomes" /><!-- Saltpeter -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="3" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Magnesium -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="4" ratio=".006" mods="offMetallurgy,!undergroundbiomes" /><!-- Bitumen -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="5" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Potash -->
|
||||
<filler block="thermalfoundation:ore" metadata="0" ratio=".048" mods="thermalfoundation,!immersiveengineering,!Metallurgy" /><!-- Copper -->
|
||||
<filler block="thermalfoundation:ore" metadata="1" ratio=".032" mods="thermalfoundation,!immersiveengineering,!Metallurgy" /><!-- Tin -->
|
||||
<filler block="thermalfoundation:ore" metadata="3" ratio=".024" mods="thermalfoundation,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".004" mods="mekanism" /><!-- Osmium -->
|
||||
<filler block="Metallurgy:base.ore" metadata="2" ratio=".008" mods="Metallurgy" /><!-- Manganese -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="0" ratio=".020" mods="Metallurgy" /><!-- Prometheum -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="1" ratio=".012" mods="Metallurgy" /><!-- Deep Iron -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="2" ratio=".012" mods="Metallurgy" /><!-- Infuscolium -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="4" ratio=".008" mods="Metallurgy" /><!-- Oureclase -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="0" ratio=".006" mods="Metallurgy" /><!-- Sulfur -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="1" ratio=".006" mods="Metallurgy" /><!-- Phosphorite -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="2" ratio=".007" mods="Metallurgy" /><!-- Saltpeter -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="3" ratio=".006" mods="Metallurgy" /><!-- Magnesium -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="4" ratio=".006" mods="off,Metallurgy" /><!-- Bitumen -->
|
||||
<filler block="Metallurgy:utility.ore" metadata="5" ratio=".006" mods="Metallurgy" /><!-- Potash -->
|
||||
<filler block="mysticalagriculture:inferium_ore" metadata="0" ratio=".012" mods="mysticalagriculture" /><!-- Inferium -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="4" ratio=".032" mods="thermalfoundation" /><!-- Aluminum -->
|
||||
<filler block="immersiveengineering:ore" metadata="1" ratio=".032" mods="immersiveengineering,!thermalfoundation" /><!-- Aluminum/Bauxite -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="0" ratio=".048" mods="thermalfoundation" /><!-- Copper -->
|
||||
<filler block="immersiveengineering:ore" metadata="0" ratio=".048" mods="immersiveengineering,!thermalfoundation" /><!-- Copper -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".048" mods="mekanism,!thermalfoundation,!immersiveengineering" /><!-- Copper -->
|
||||
<filler block="ic2:resource" metadata="1" ratio=".048" mods="ic2,!thermalfoundation,!immersiveengineering,!mekanism" /><!-- Copper -->
|
||||
<filler block="nuclearcraft:ore" metadata="0" ratio=".048" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!mekanism,!ic2" /><!-- Copper -->
|
||||
<filler block="forestry:resources" metadata="1" ratio=".048" mods="forestry,!thermalfoundation,!immersiveengineering,!mekanism,!ic2,!nuclearcraft" /><!-- Copper -->
|
||||
<filler block="projectred-exploration:ore" metadata="3" ratio=".048" mods="projectred-exploration,!thermalfoundation,!immersiveengineering,!mekanism,!ic2,!nuclearcraft,!forestry" /><!-- Copper -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="3" ratio=".024" mods="thermalfoundation" /><!-- Lead -->
|
||||
<filler block="immersiveengineering:ore" metadata="2" ratio=".024" mods="immersiveengineering,!thermalfoundation" /><!-- Lead -->
|
||||
<filler block="ic2:resource" metadata="2" ratio=".024" mods="ic2,!thermalfoundation,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="nuclearcraft:ore" metadata="2" ratio=".024" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!ic2" /><!-- Lead -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="1" ratio=".032" mods="thermalfoundation" /><!-- Tin -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".032" mods="mekanism,!thermalfoundation" /><!-- Tin -->
|
||||
<filler block="ic2:resource" metadata="3" ratio=".032" mods="ic2,!thermalfoundation,!mekanism" /><!-- Tin -->
|
||||
<filler block="nuclearcraft:ore" metadata="1" ratio=".032" mods="nuclearcraft,!thermalfoundation,!mekanism,!ic2" /><!-- Tin -->
|
||||
<filler block="forestry:resources" metadata="2" ratio=".032" mods="forestry,!thermalfoundation,!mekanism,!ic2,!nuclearcraft" /><!-- Tin -->
|
||||
<filler block="projectred-exploration:ore" metadata="4" ratio=".032" mods="projectred-exploration,!thermalfoundation,!mekanism,!ic2,!nuclearcraft,!forestry" /><!-- Tin -->
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -94,37 +105,49 @@
|
|||
</fillerSet>
|
||||
|
||||
<fillerSet group="overworld_uncommonOres" name="stone">
|
||||
<import group="overworld_uncommonOres" name="allButVanilla" />
|
||||
<filler block="minecraft:redstone_ore" ratio=".008" mods="!thermalfoundation" />
|
||||
<filler block="thermalfoundation:ore_fluid" metadata="2" ratio=".008" />
|
||||
<filler block="minecraft:gold_ore" ratio=".010" />
|
||||
<filler block="minecraft:lapis_ore" ratio=".008" />
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_uncommonOres" name="allButVanilla">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="6" ratio="tbd" mods="biomesoplenty,!undergroundbiomes" /><!-- Sapphire -->
|
||||
<filler block="appliedenergistics2:quartz_ore" ratio=".010" mods="appliedenergistics2,!undergroundbiomes" /><!-- Certus quartz -->
|
||||
<filler block="appliedenergistics2:charged_quartz_ore" ratio=".004" mods="appliedenergistics2,!undergroundbiomes" /><!-- Charged Certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="1" ratio=".006" mods="arsmagica2,!undergroundbiomes" /><!-- Chimerite -->
|
||||
<filler block="deepresonance:resonating_ore" metadata="0" ratio=".001" mods="ic2,!undergroundbiomes" /><!-- Resonating -->
|
||||
<filler block="ic2:resource" metadata="4" ratio=".001" mods="ic2,!netherores,!undergroundbiomes" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="3" ratio=".002" mods="nuclearcraft,!undergroundbiomes" /><!-- Thorium -->
|
||||
<filler block="nuclearcraft:ore" metadata="4" ratio=".002" mods="nuclearcraft,!ic2,!undergroundbiomes" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="5" ratio=".004" mods="nuclearcraft,!undergroundbiomes" /><!-- Boron -->
|
||||
<filler block="nuclearcraft:ore" metadata="6" ratio=".003" mods="nuclearcraft,!undergroundbiomes" /><!-- Lithium -->
|
||||
<filler block="nuclearcraft:ore" metadata="7" ratio=".006" mods="nuclearcraft,!undergroundbiomes" /><!-- Magnesium -->
|
||||
<filler block="immersiveengineering:ore" metadata="3" ratio=".015" mods="immersiveengineering,!Metallurgy" /><!-- Silver -->
|
||||
<filler block="immersiveengineering:ore" metadata="4" ratio=".015" mods="immersiveengineering,!undergroundbiomes" /><!-- Nickel -->
|
||||
|
||||
<filler block="appliedenergistics2:quartz_ore" ratio=".010" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="appliedenergistics2:charged_quartz_ore" ratio=".004" mods="appliedenergistics2" /><!-- Charged Certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="1" ratio=".006" mods="arsmagica2" /><!-- Chimerite -->
|
||||
<filler block="deepresonance:resonating_ore" metadata="0" ratio=".001" mods="deepresonance" /><!-- Resonating -->
|
||||
<filler block="LanteaCraft:blockLanteaOre" metadata="0" ratio=".005" mods="LanteaCraft" /><!-- Naquadah -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="5" ratio=".008" mods="Metallurgy,!undergroundbiomes" /><!-- Astral Silver -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="6" ratio=".0064" mods="Metallurgy,!undergroundbiomes" /><!-- Carmot -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="7" ratio=".0064" mods="Metallurgy,!undergroundbiomes" /><!-- Mithril -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="8" ratio=".004" mods="Metallurgy,!undergroundbiomes" /><!-- Rubracium -->
|
||||
<filler block="Metallurgy:precious.ore" metadata="0" ratio=".015" mods="Metallurgy,!undergroundbiomes" /><!-- Zinc -->
|
||||
<filler block="Metallurgy:precious.ore" metadata="1" ratio=".015" mods="Metallurgy,!undergroundbiomes" /><!-- Silver -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".010" mods="mekanism,!undergroundbiomes" /><!-- Osmium -->
|
||||
<filler block="thermalfoundation:ore" metadata="2" ratio=".015" mods="thermalfoundation,!Metallurgy" /><!-- Silver -->
|
||||
<filler block="thermalfoundation:ore" metadata="4" ratio=".015" mods="thermalfoundation,!immersiveengineering" /><!-- Ferrous/Nickel -->
|
||||
<filler block="thermalfoundation:ore" metadata="6" ratio=".0064" mods="thermalfoundation,!Metallurgy" /><!-- Mana infused/Mithril -->
|
||||
<filler block="libvulpes:ore0" metadata="0" ratio=".008" mods="libvulpes" /><!-- Dilithium -->
|
||||
<filler block="mekanism:oreblock" metadata="0" ratio=".010" mods="mekanism" /><!-- Osmium -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="5" ratio=".008" mods="Metallurgy" /><!-- Astral Silver -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="6" ratio=".0064" mods="Metallurgy" /><!-- Carmot -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="8" ratio=".004" mods="Metallurgy" /><!-- Rubracium -->
|
||||
<filler block="Metallurgy:precious.ore" metadata="0" ratio=".015" mods="Metallurgy" /><!-- Zinc -->
|
||||
<filler block="mysticalagriculture:prosperity_ore" metadata="0" ratio=".008" mods="mysticalagriculture" /><!-- Prosperity -->
|
||||
<filler block="nuclearcraft:ore" metadata="3" ratio=".002" mods="nuclearcraft" /><!-- Thorium -->
|
||||
<filler block="nuclearcraft:ore" metadata="5" ratio=".004" mods="nuclearcraft" /><!-- Boron -->
|
||||
<filler block="nuclearcraft:ore" metadata="6" ratio=".003" mods="nuclearcraft" /><!-- Lithium -->
|
||||
<filler block="nuclearcraft:ore" metadata="7" ratio=".006" mods="nuclearcraft" /><!-- Magnesium -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="3" ratio=".015" mods="thermalfoundation" /><!-- Lead -->
|
||||
<filler block="immersiveengineering:ore" metadata="2" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Lead -->
|
||||
<filler block="ic2:resource" metadata="2" ratio=".015" mods="ic2,!thermalfoundation,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="nuclearcraft:ore" metadata="2" ratio=".015" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!ic2" /><!-- Lead -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="6" ratio=".0064" mods="thermalfoundation" /><!-- Mana infused/Mithril -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="4" ratio=".015" mods="thermalfoundation" /><!-- Ferrous/Nickel -->
|
||||
<filler block="immersiveengineering:ore" metadata="4" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Nickel -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="2" ratio=".015" mods="thermalfoundation" /><!-- Silver -->
|
||||
<filler block="immersiveengineering:ore" metadata="3" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Silver -->
|
||||
<filler block="projectred-exploration:ore" metadata="5" ratio=".015" mods="projectred-exploration,!thermalfoundation,!immersiveengineering" /><!-- Silver -->
|
||||
|
||||
<filler block="libvulpes:ore0" metadata="8" ratio=".008" mods="libvulpes" /><!-- Titanium/Rutile -->
|
||||
<filler block="techguns:basicore" metadata="3" ratio=".008" mods="techguns,!libvulpes" /><!-- Titanium -->
|
||||
|
||||
<filler block="ic2:resource" metadata="4" ratio=".001" mods="ic2" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="4" ratio=".002" mods="nuclearcraft,!ic2" /><!-- Uranium -->
|
||||
<filler block="immersiveengineering:ore" metadata="5" ratio=".001" mods="immersiveengineering,!ic2,!nuclearcraft" /><!-- Uranium -->
|
||||
<filler block="bigreactors:brore" metadata="0" ratio=".001" mods="bigreactors,!ic2,!nuclearcraft,!immersiveengineering" /><!-- Uranium -->
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -142,28 +165,61 @@
|
|||
<filler block="minecraft:bedrock" weight="1" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="overworld_rareOres" name="stone">
|
||||
<import group="overworld_rareOres" name="allButVanilla" />
|
||||
<filler block="minecraft:gold_ore" ratio=".004" />
|
||||
<filler block="minecraft:diamond_ore" ratio=".004" />
|
||||
<fillerSet group="overworld_rareGems" name="emerald" weight="10">
|
||||
<filler block="minecraft:emerald_ore" ratio=".001" />
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareOres" name="allButVanilla">
|
||||
<filler block="ic2:resource" metadata="4" ratio=".030" mods="off,ic2,!netherores,!undergroundbiomes" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="3" ratio=".015" mods="nuclearcraft,!undergroundbiomes" /><!-- Thorium -->
|
||||
<filler block="nuclearcraft:ore" metadata="4" ratio=".015" mods="nuclearcraft,!ic2,!undergroundbiomes" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="5" ratio=".030" mods="nuclearcraft,!undergroundbiomes" /><!-- Boron -->
|
||||
<filler block="nuclearcraft:ore" metadata="6" ratio=".020" mods="nuclearcraft,!undergroundbiomes" /><!-- Lithium -->
|
||||
<filler block="nuclearcraft:ore" metadata="7" ratio=".030" mods="nuclearcraft,!undergroundbiomes" /><!-- Magnesium -->
|
||||
<filler block="appliedenergistics2:charged_quartz_ore" ratio=".005" mods="appliedenergistics2,!undergroundbiomes" /><!-- Charged certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="2" ratio=".008" mods="arsmagica2,!undergroundbiomes" /><!-- Blue topaz -->
|
||||
<fillerSet group="overworld_rareGems" name="ruby" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="1" ratio=".001" /><!-- Ruby -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="peridot" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="2" ratio=".001" /><!-- Peridot -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="topaz" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="3" ratio=".001" /><!-- Topaz -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="tanzanite" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="4" ratio=".001" /><!-- Tanzanite -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="malachite" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="5" ratio=".001" /><!-- Malachite -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="sapphire" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="6" ratio=".001" /><!-- Sapphire -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="amber" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="7" ratio=".001" /><!-- Amber -->
|
||||
</fillerSet>
|
||||
<fillerSet group="overworld_rareGems" name="none" ratio="0.10"><!-- slight chance of no gems -->
|
||||
<filler block="minecraft:stone" metadata="0" ratio=".00000001" /><!-- negligeable ratio -->
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="overworld_rareOres" name="stone">
|
||||
<filler block="minecraft:gold_ore" ratio=".004" />
|
||||
<filler block="minecraft:diamond_ore" ratio=".004" />
|
||||
<import group="overworld_rareGems" /><!-- add a random gem, don't mix them in the same volume -->
|
||||
|
||||
<filler block="appliedenergistics2:charged_quartz_ore" ratio=".005" mods="appliedenergistics2" /><!-- Charged certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="2" ratio=".008" mods="arsmagica2" /><!-- Blue topaz -->
|
||||
<filler block="draconicevolution:draconium_ore" metadata="0" ratio="0.004" mods="off,draconicevolution" /><!-- Draconium -->
|
||||
<filler block="LanteaCraft:blockLanteaOre" metadata="1" ratio=".006" mods="LanteaCraft" /><!-- Naquadriah -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="11" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Orichalcum -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="13" ratio=".004" mods="Metallurgy,!undergroundbiomes" /><!-- Adamantine -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="14" ratio=".004" mods="Metallurgy,!undergroundbiomes" /><!-- Atlarus -->
|
||||
<filler block="Metallurgy:precious.ore" metadata="2" ratio=".006" mods="Metallurgy,!undergroundbiomes" /><!-- Platinum -->
|
||||
<filler block="StargateTech2:block.naquadah" ratio=".002" mods="StargateTech2,!undergroundbiomes" /><!-- Naquadah -->
|
||||
<filler block="thermalfoundation:ore" metadata="5" ratio=".006" mods="thermalfoundation,!Metallurgy" /><!-- Shiny/Platinum -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="11" ratio=".006" mods="Metallurgy" /><!-- Orichalcum -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="13" ratio=".004" mods="Metallurgy" /><!-- Adamantine -->
|
||||
<filler block="Metallurgy:fantasy.ore" metadata="14" ratio=".004" mods="Metallurgy" /><!-- Atlarus -->
|
||||
<filler block="nuclearcraft:ore" metadata="3" ratio=".015" mods="nuclearcraft" /><!-- Thorium -->
|
||||
<filler block="nuclearcraft:ore" metadata="5" ratio=".030" mods="nuclearcraft" /><!-- Boron -->
|
||||
<filler block="nuclearcraft:ore" metadata="6" ratio=".020" mods="nuclearcraft" /><!-- Lithium -->
|
||||
<filler block="nuclearcraft:ore" metadata="7" ratio=".030" mods="nuclearcraft" /><!-- Magnesium -->
|
||||
<filler block="StargateTech2:block.naquadah" ratio=".002" mods="StargateTech2" /><!-- Naquadah -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="5" ratio=".006" mods="thermalfoundation" /><!-- Shiny/Platinum -->
|
||||
|
||||
<filler block="libvulpes:ore0" metadata="8" ratio=".006" mods="libvulpes" /><!-- Titanium/Rutile -->
|
||||
<filler block="techguns:basicore" metadata="3" ratio=".006" mods="techguns,!libvulpes" /><!-- Titanium -->
|
||||
|
||||
<filler block="ic2:resource" metadata="4" ratio=".015" mods="off,ic2" /><!-- Uranium -->
|
||||
<filler block="nuclearcraft:ore" metadata="4" ratio=".015" mods="nuclearcraft,!ic2" /><!-- Uranium -->
|
||||
<filler block="immersiveengineering:ore" metadata="5" ratio=".015" mods="immersiveengineering,!ic2,!nuclearcraft" /><!-- Uranium -->
|
||||
<filler block="bigreactors:brore" metadata="0" ratio=".015" mods="bigreactors,!ic2,!nuclearcraft,!immersiveengineering" /><!-- Uranium/Yellorite -->
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -178,12 +234,13 @@
|
|||
<filler block="minecraft:quartz_ore" ratio="0.07" />
|
||||
<filler block="minecraft:glowstone" ratio="0.0075" />
|
||||
<filler block="minecraft:lava" ratio="0.01" />
|
||||
<filler block="nex:amethyst_ore" ratio="0.009" mods="nex" />
|
||||
<filler block="nex:rime_ore" ratio="0.007" mods="nex" />
|
||||
<filler block="draconicevolution:draconium_ore" metadata="1" ratio="0.002" mods="draconicevolution" />
|
||||
<filler block="minecraft:bedrock" ratio=".001" />
|
||||
|
||||
<filler block="arsmagica2:vinteumOre" metadata="4" ratio=".0005" mods="arsmagica2" /><!-- Sunstone -->
|
||||
<filler block="bigreactors:brore" metadata="2" ratio=".015" mods="bigreactors" /><!-- Benitoite -->
|
||||
<filler block="draconicevolution:draconium_ore" metadata="1" ratio="0.004" mods="draconicevolution" /><!-- Draconium -->
|
||||
<filler block="deepresonance:resonating_ore" metadata="1" ratio="0.0028" mods="deepresonance" />
|
||||
<filler block="deepresonance:resonating_crystal" ratio="0.0005" mods="deepresonance" />
|
||||
<filler block="arsmagica2:vinteumOre" metadata="4" ratio=".0005" mods="arsmagica2" /><!-- Sunstone -->
|
||||
<filler block="Metallurgy:nether.ore" metadata="0" ratio=".036" mods="Metallurgy" /><!-- Ignatius -->
|
||||
<filler block="Metallurgy:nether.ore" metadata="1" ratio=".028" mods="Metallurgy" /><!-- Shadow Iron -->
|
||||
<filler block="Metallurgy:nether.ore" metadata="2" ratio=".024" mods="Metallurgy" /><!-- Lemurite -->
|
||||
|
@ -194,10 +251,14 @@
|
|||
<filler block="Metallurgy:nether.ore" metadata="7" ratio=".008" mods="Metallurgy" /><!-- Kalendrite -->
|
||||
<filler block="Metallurgy:nether.ore" metadata="8" ratio=".012" mods="Metallurgy" /><!-- Vulcanite -->
|
||||
<filler block="Metallurgy:nether.ore" metadata="9" ratio=".005" mods="Metallurgy" /><!-- Sanguinite -->
|
||||
<filler block="mysticalagriculture:nether_inferium_ore" metadata="0" ratio=".008" mods="mysticalagriculture" /><!-- Inferium -->
|
||||
<filler block="mysticalagriculture:nether_prosperity_ore" metadata="0" ratio=".004" mods="mysticalagriculture" /><!-- Prosperity -->
|
||||
<filler block="nex:amethyst_ore" ratio="0.009" mods="nex" />
|
||||
<filler block="nex:rime_ore" ratio="0.007" mods="nex" />
|
||||
<filler block="tconstruct:ore" metadata="0" ratio=".004" mods="tconstruct" /><!-- Cobalt -->
|
||||
<filler block="tconstruct:ore" metadata="1" ratio=".004" mods="tconstruct" /><!-- Ardite -->
|
||||
|
||||
<filler block="undergroundbiomes:igneous_stone_thaumcraft_ore_cinnabar" metadata="0" ratio=".004" mods="thaumcraft,undergroundbiomes" /><!-- Red granite Cinnabar -->
|
||||
<filler block="minecraft:bedrock" ratio=".001" />
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -207,15 +268,37 @@
|
|||
<filler block="minecraft:end_stone" weight="100" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="end_gems" name="biome_essence" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:biome_block" metadata="0" ratio=".003" /><!-- Biome essence, more frequent as they give a random biome -->
|
||||
</fillerSet>
|
||||
<fillerSet group="end_gems" name="amethyst" weight="10" mods="biomesoplenty">
|
||||
<filler block="biomesoplenty:gem_ore" metadata="0" ratio=".001" /><!-- Amethyst -->
|
||||
</fillerSet>
|
||||
<fillerSet group="end_gems" name="none" ratio="0.10"><!-- slight change of no gems -->
|
||||
<filler block="minecraft:end_stone" metadata="0" ratio=".00000001" /><!-- negligeable ratio -->
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="end_ores" name="endstone">
|
||||
<filler block="appliedenergistics2:quartz" ratio=".005" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="3" ratio=".005" mods="arsmagica2,!undergroundbiomes" /><!-- Moonstone -->
|
||||
<filler block="undergroundbiomes:metamorphic_arsmagica2:ores.3" metadata="2" ratio=".005" mods="arsmagica2,undergroundbiomes" /><!-- Marble Moonstone -->
|
||||
<filler block="thaumcraft:ore_cinnabar" metadata="0" ratio=".005" mods="thaumcraft,!undergroundbiomes" /><!-- Cinnabar -->
|
||||
<filler block="undergroundbiomes:metamorphic_stone_thaumcraft_ore_cinnabar" metadata="2" ratio=".005" mods="thaumcraft,undergroundbiomes" /><!-- Marble Cinnabar -->
|
||||
<import group="end_gems" /><!-- add a random gem, don't mix them in the same volume -->
|
||||
<filler block="biomesoplenty:crystal" metadata="0" ratio=".001" mods="biomesoplenty" /><!-- Celestial crystal -->
|
||||
|
||||
<filler block="appliedenergistics2:quartz_block" ratio=".005" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="bigreactors:brore" metadata="1" ratio=".015" mods="bigreactors" /><!-- Anglesite -->
|
||||
<filler block="draconicevolution:draconium_ore" metadata="2" ratio="0.005" mods="draconicevolution" /><!-- Draconium -->
|
||||
<filler block="deepresonance:resonating_ore" metadata="2" ratio="0.0028" mods="off,deepresonance" />
|
||||
<filler block="deepresonance:resonating_crystal" ratio="0.0005" mods="off,deepresonance" />
|
||||
<filler block="Metallurgy:ender.ore" metadata="0" ratio=".020" mods="Metallurgy" /><!-- Eximite -->
|
||||
<filler block="Metallurgy:ender.ore" metadata="1" ratio=".010" mods="Metallurgy" /><!-- Meutoite -->
|
||||
<filler block="mysticalagriculture:end_inferium_ore" metadata="0" ratio=".008" mods="off,mysticalagriculture" /><!-- Inferium -->
|
||||
<filler block="mysticalagriculture:end_prosperity_ore" metadata="0" ratio=".004" mods="mysticalagriculture" /><!-- Prosperity -->
|
||||
<filler block="rftools:dimensional_shard_ore" metadata="2" ratio=".005" mods="rftools" /><!-- Dimensional shard -->
|
||||
<filler block="warpdrive:iridium_block" ratio=".001" mods="!netherores" />
|
||||
|
||||
<filler block="thaumcraft:ore_cinnabar" metadata="0" ratio=".005" mods="thaumcraft,!undergroundbiomes" /><!-- Cinnabar -->
|
||||
<filler block="undergroundbiomes:metamorphic_stone_thaumcraft_ore_cinnabar" metadata="2" ratio=".005" mods="thaumcraft,undergroundbiomes" /><!-- Marble Cinnabar -->
|
||||
|
||||
<filler block="arsmagica2:vinteumOre" metadata="3" ratio=".005" mods="arsmagica2,!undergroundbiomes" /><!-- Moonstone -->
|
||||
<filler block="undergroundbiomes:metamorphic_arsmagica2:ores.3" metadata="2" ratio=".005" mods="arsmagica2,undergroundbiomes" /><!-- Marble Moonstone -->
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -258,12 +341,12 @@
|
|||
<filler block="minecraft:netherrack" weight="100" />
|
||||
<filler block="minecraft:quartz_ore" weight="2" />
|
||||
</fillerSet>
|
||||
<for variable="metadata" in="1,6,14">
|
||||
<fillerSet group="nether_surface" name="stainedClay_%metadata%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%metadata%" weight="100" />
|
||||
<for variable="metadataNether" in="1,6,14">
|
||||
<fillerSet group="nether_surface" name="stainedClay_%metadataNether%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%metadataNether%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="nether_surface" name="concrete_%metadata%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%metadata%" weight="100" />
|
||||
<fillerSet group="nether_surface" name="concrete_%metadataNether%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%metadataNether%" weight="100" />
|
||||
</fillerSet>
|
||||
</for>
|
||||
<fillerSet group="nether_surface" name="soulsand" weight="20">
|
||||
|
@ -279,12 +362,12 @@
|
|||
<filler block="minecraft:end_stone" weight="100" />
|
||||
<filler block="minecraft:obsidian" weight="15" />
|
||||
</fillerSet>
|
||||
<for variable="metadata" in="0,4">
|
||||
<fillerSet group="end_surface" name="stainedClay_%metadata%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%metadata%" weight="100" />
|
||||
<for variable="metadataEnd" in="0,4">
|
||||
<fillerSet group="end_surface" name="stainedClay_%metadataEnd%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%metadataEnd%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="end_surface" name="concrete_%metadata%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%metadata%" weight="100" />
|
||||
<fillerSet group="end_surface" name="concrete_%metadataEnd%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%metadataEnd%" weight="100" />
|
||||
</fillerSet>
|
||||
</for>
|
||||
<fillerSet group="end_surface" name="clay" weight="15">
|
||||
|
@ -296,38 +379,38 @@
|
|||
|
||||
|
||||
<!-- WarpDrive gases -->
|
||||
<for variable="gasMetadata" in="0,1,2,3,4,5,6,7,8,9,10,11">
|
||||
<fillerSet group="gas" name="wd_%gasMetadata%" weight="1">
|
||||
<filler block="warpdrive:gas" metadata="%gasMetadata%" weight="100" />
|
||||
<for variable="metadataGas" in="0,1,2,3,4,5,6,7,8,9,10,11">
|
||||
<fillerSet group="gas" name="wd_%metadataGas%" weight="1">
|
||||
<filler block="warpdrive:gas" metadata="%metadataGas%" weight="100" />
|
||||
</fillerSet>
|
||||
</for>
|
||||
|
||||
|
||||
<!-- ship hull -->
|
||||
<for variable="colorMetadata" in="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15">
|
||||
<fillerSet group="hull_plain" name="clay_%colorMetadata%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%colorMetadata%" weight="100" />
|
||||
<for variable="metadataHull" in="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15">
|
||||
<fillerSet group="hull_plain" name="clay_%metadataHull%" weight="10">
|
||||
<filler block="minecraft:stained_hardened_clay" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_glass" name="clay_%colorMetadata%" weight="10">
|
||||
<filler block="minecraft:stained_glass" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_glass" name="clay_%metadataHull%" weight="10">
|
||||
<filler block="minecraft:stained_glass" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_plain" name="concrete_%colorMetadata%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_plain" name="concrete_%metadataHull%" weight="10">
|
||||
<filler block="minecraft:concrete" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_glass" name="concrete_%colorMetadata%" weight="10">
|
||||
<filler block="minecraft:stained_glass" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_glass" name="concrete_%metadataHull%" weight="10">
|
||||
<filler block="minecraft:stained_glass" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_plain" name="basic_%colorMetadata%" weight="40">
|
||||
<filler block="warpdrive:hull.basic.plain" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_plain" name="basic_%metadataHull%" weight="40">
|
||||
<filler block="warpdrive:hull.basic.plain" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_glass" name="basic_%colorMetadata%" weight="40">
|
||||
<filler block="warpdrive:hull.basic.glass" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_glass" name="basic_%metadataHull%" weight="40">
|
||||
<filler block="warpdrive:hull.basic.glass" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_plain" name="advanced_%colorMetadata%" weight="10">
|
||||
<filler block="warpdrive:hull.advanced.plain" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_plain" name="advanced_%metadataHull%" weight="10">
|
||||
<filler block="warpdrive:hull.advanced.plain" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="hull_glass" name="advanced_%colorMetadata%" weight="10">
|
||||
<filler block="warpdrive:hull.advanced.glass" metadata="%colorMetadata%" weight="100" />
|
||||
<fillerSet group="hull_glass" name="advanced_%metadataHull%" weight="10">
|
||||
<filler block="warpdrive:hull.advanced.glass" metadata="%metadataHull%" weight="100" />
|
||||
</fillerSet>
|
||||
</for>
|
||||
<fillerSet group="hull_plain" name="ic2" weight="1" mods="ic2">
|
||||
|
@ -389,11 +472,11 @@
|
|||
|
||||
<!-- ship solar panel -->
|
||||
<fillerSet group="ship_solarPanel" name="advanced_solar_panels" weight="20" mods="advanced_solar_panels">
|
||||
<filler block="advanced_solar_panels:machines" nbt="{facing:5}" metadata="2" weight="200" />
|
||||
<filler block="advanced_solar_panels:machines" nbt="{facing:5}" metadata="3" weight="100" />
|
||||
<filler block="advanced_solar_panels:machines" nbt="{facing:5b,id:"advanced_solar_panels:advanced_solar_panel"}" metadata="0" weight="200" />
|
||||
<filler block="advanced_solar_panels:machines" nbt="{facing:5b,id:"advanced_solar_panels:hybrid_solar_panel"}" metadata="0" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_solarPanel" name="ic2" weight="10" mods="ic2">
|
||||
<filler block="ic2:te" metadata="3" nbt="{facing:5,id:"ic2:solar_generator"}" weight="100" />
|
||||
<filler block="ic2:te" metadata="0" nbt="{facing:5b,id:"ic2:solar_generator"}" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_solarPanel" name="enderio" weight="10" mods="enderio">
|
||||
<filler block="enderio:block_solar_panel" metadata="0" weight="100" />
|
||||
|
@ -404,7 +487,7 @@
|
|||
<filler block="enderio:block_solar_panel" metadata="1" weight="50" />
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_solarPanel" name="thermaldynamics_without_enderio" weight="10" mods="thermaldynamics,!enderio">
|
||||
<import group="ship_solarPanel" name="vanilla" />
|
||||
<filler block="minecraft:daylight_detector" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_solarPanel" name="vanilla" weight="1" mods="!ic2,!enderio,!thermaldynamics">
|
||||
<filler block="minecraft:daylight_detector" weight="100" />
|
||||
|
@ -416,10 +499,10 @@
|
|||
<import group="ship_wiring" name="ic2" />
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_wiring" name="ic2" weight="10" mods="ic2">
|
||||
<filler block="ic2:cable" nbt="{type:0b,insulation:1b}" metadata="0" weight="100" /><!-- Insulated copper cable -->
|
||||
<filler block="ic2:cable" nbt="{type:2b,insulation:1b}" metadata="3" weight="100" /><!-- Insulated gold cable -->
|
||||
<filler block="ic2:cable" nbt="{type:1b,insulation:0b}" metadata="6" weight="100" /><!-- Glass fiber cable -->
|
||||
<filler block="ic2:cable" nbt="{type:4b,insulation:1b}" metadata="9" weight="100" /><!-- Insulated tin cable -->
|
||||
<filler block="ic2:te" nbt="{cableType:0b,insulation:1b,id:"ic2:cable"}" metadata="9" weight="100" /><!-- Insulated copper cable -->
|
||||
<filler block="ic2:te" nbt="{cableType:2b,insulation:1b,id:"ic2:cable"}" metadata="9" weight="100" /><!-- Insulated gold cable -->
|
||||
<filler block="ic2:te" nbt="{cableType:1b,insulation:0b,id:"ic2:cable"}" metadata="9" weight="100" /><!-- Glass fiber cable -->
|
||||
<filler block="ic2:te" nbt="{cableType:4b,insulation:1b,id:"ic2:cable"}" metadata="9" weight="100" /><!-- Insulated tin cable -->
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_wiring" name="enderio" weight="5" mods="enderio">
|
||||
<filler block="enderio:block_conduit_bundle" metadata="0" nbt="{conduits:{"0":{subtype:0s,UUID:"7e9c38f2-9a3a-3091-bea9-d53e75afc515"},size:1}}" weight="100" /><!-- Energy Conduit -->
|
||||
|
@ -429,14 +512,14 @@
|
|||
<fillerSet group="ship_wiring" name="enderio_with_thermaldynamics" weight="5" mods="enderio,thermaldynamics">
|
||||
<import group="ship_wiring" name="enderio" />
|
||||
<!-- manual import of group "ship_wiring" with name "thermaldynamics_without_enderio" -->
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="0" weight="100" /><!-- Leadstone Fluxduct -->
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="1" weight="40" /><!-- Hardened Fluxduct -->
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="2" weight="10" /><!-- Redstone Energy Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="0" weight="100" /><!-- Leadstone Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="1" weight="40" /><!-- Hardened Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="2" weight="10" /><!-- Redstone Energy Fluxduct -->
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_wiring" name="thermaldynamics_without_enderio" weight="5" mods="thermaldynamics,!enderio">
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="0" weight="100" /><!-- Leadstone Fluxduct -->
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="1" weight="40" /><!-- Hardened Fluxduct -->
|
||||
<filler block="thermaldynamics:ThermalDynamics_0" metadata="2" weight="10" /><!-- Redstone Energy Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="0" weight="100" /><!-- Leadstone Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="1" weight="40" /><!-- Hardened Fluxduct -->
|
||||
<filler block="thermaldynamics:duct_0" metadata="2" weight="10" /><!-- Redstone Energy Fluxduct -->
|
||||
</fillerSet>
|
||||
<fillerSet group="ship_wiring" name="vanilla" weight="5" mods="!ic2,!enderio,!thermaldynamics">
|
||||
<filler block="minecraft:fence" weight="100" />
|
||||
|
@ -486,15 +569,65 @@
|
|||
<fillerSet group="moon.flow" name="water" weight="5">
|
||||
<filler block="minecraft:water" weight="100" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil" weight="50" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_0" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil" weight="50" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_1" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil" weight="50" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_2" weight="5" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="moon.flow" name="oil_buildcraft0" weight="5" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_0" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil_buildcraft1" weight="5" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_1" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil_buildcraft2" weight="5" mods="buildcraftenergy">
|
||||
<filler block="buildcraftenergy:fluid_block_oil_heat_2" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil_thermalfoundation" weight="15" mods="thermalfoundation,!buildcraftenergy">
|
||||
<filler block="thermalfoundation:fluid_crude_oil" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="oil_immersivepetroleum" weight="15" mods="immersivepetroleum,!buildcraftenergy,!thermalfoundation">
|
||||
<filler block="immersivepetroleum:fluid_crude_oil" weight="5" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="moon.flow" name="cryotheum" weight="3" mods="thermalfoundation">
|
||||
<filler block="thermalfoundation:fluid_cryotheum" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="pyrotheum" weight="3" mods="thermalfoundation">
|
||||
<filler block="thermalfoundation:fluid_pyrotheum" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="petrotheum" weight="3" mods="thermalfoundation">
|
||||
<filler block="thermalfoundation:fluid_petrotheum" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="mana_wizardry" weight="5" mods="wizardry">
|
||||
<filler block="wizardry:mana_fluid" weight="5" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="moon.flow" name="sewage" weight="5" mods="industrialforegoing">
|
||||
<filler block="industrialforegoing:sewage" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="sludge" weight="5" mods="industrialforegoing">
|
||||
<filler block="industrialforegoing:sludge" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="sulfuric_acid" weight="5" mods="nuclearcraft">
|
||||
<filler block="nuclearcraft:fluid_sulfuric_acid" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="biomass" weight="5" mods="forestry">
|
||||
<filler block="forestry:fluid.biomass" weight="5" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="moon.flow" name="exhaust_steam" weight="5" mods="nuclearcraft">
|
||||
<filler block="nuclearcraft:fluid_exhaust_steam" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="high_pressure_steam" weight="5" mods="nuclearcraft">
|
||||
<filler block="nuclearcraft:fluid_high_pressure_steam" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="low_pressure_steam" weight="5" mods="nuclearcraft">
|
||||
<filler block="nuclearcraft:fluid_low_pressure_steam" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="low_quality_steam" weight="5" mods="nuclearcraft">
|
||||
<filler block="nuclearcraft:fluid_low_quality_steam" weight="5" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.flow" name="steam" weight="5" mods="advgenerators">
|
||||
<filler block="advgenerators:steam" weight="5" />
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="moon.flow" name="empty" ratio="0.35">
|
||||
<!-- empty fillerSet gives a random chance for the related shell to not exist at all -->
|
||||
</fillerSet>
|
||||
|
@ -503,35 +636,35 @@
|
|||
<!-- core variation for moons -->
|
||||
<fillerSet group="moon.core" name="lava" weight="6">
|
||||
<filler block="minecraft:lava" weight="100" />
|
||||
<filler block="arsmagica2:vinteumOre" metadata="4" ratio=".005" mods="arsmagica2" /><!-- Sunstone -->
|
||||
<filler block="arsmagica2:vinteumOre" metadata="4" ratio=".005" mods="arsmagica2" /><!-- Sunstone -->
|
||||
<filler block="StargateTech2:block.naquadah" ratio=".005" mods="StargateTech2" /><!-- Naquadah -->
|
||||
<filler block="enderio:block_alloy" metadata="1" ratio="0.001" mods="enderio" /><!-- Energetic alloy block -->
|
||||
<filler block="enderio:block_alloy" metadata="1" ratio="0.001" mods="enderio" /><!-- Energetic alloy block -->
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="stone" weight="5">
|
||||
<import group="overworld_rare" name="stone" />
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="obsidian" weight="1">
|
||||
<import group="overworld_rare" name="obsidian" />
|
||||
<filler block="enderio:block_alloy" metadata="6" ratio="0.001" mods="enderio" /><!-- Dark steel block -->
|
||||
<filler block="enderio:block_alloy" metadata="6" ratio="0.001" mods="enderio" /><!-- Dark steel block -->
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="water" weight="2">
|
||||
<filler block="minecraft:water" weight="100" />
|
||||
<filler block="minecraft:ice" ratio="0.075" />
|
||||
<filler block="minecraft:packed_ice" ratio="0.005" />
|
||||
<filler block="minecraft:packed_ice" ratio="0.005" />
|
||||
<filler block="appliedenergistics2:quartz_block" ratio=".005" mods="appliedenergistics2" /><!-- Certus quartz block -->
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="ice" weight="1">
|
||||
<filler block="minecraft:packed_ice" weight="100" />
|
||||
<filler block="minecraft:lapis_block" ratio="0.02" />
|
||||
<filler block="minecraft:packed_ice" weight="100" />
|
||||
<filler block="minecraft:lapis_block" ratio="0.02" />
|
||||
<filler block="ebwizardry:crystal_block" metadata="0" ratio="0.001" mods="ebwizardry" /><!-- Crystal block -->
|
||||
<filler block="appliedenergistics2:quartz_block" ratio=".010" mods="appliedenergistics2" /><!-- Certus quartz block -->
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="diaquartz" weight="1">
|
||||
<filler block="minecraft:quartz_block" metadata="0" weight="100" />
|
||||
<filler block="minecraft:quartz_block" metadata="1" weight="100" />
|
||||
<filler block="minecraft:diamond_block" ratio="0.005" />
|
||||
<filler block="minecraft:diamond_block" ratio="0.005" />
|
||||
<filler block="ebwizardry:crystal_block" metadata="0" ratio="0.006" mods="ebwizardry" /><!-- Crystal block -->
|
||||
<filler block="enderio:block_alloy" metadata="2" ratio="0.001" mods="enderio" /><!-- Vibrant alloy block -->
|
||||
<filler block="enderio:block_alloy" metadata="2" ratio="0.001" mods="enderio" /><!-- Vibrant alloy block -->
|
||||
</fillerSet>
|
||||
<fillerSet group="moon.core" name="iriquartz" weight="1">
|
||||
<filler block="minecraft:quartz_block" metadata="0" weight="100" />
|
||||
|
@ -543,10 +676,9 @@
|
|||
<filler block="minecraft:quartz_block" metadata="2" weight="33" />
|
||||
<filler block="minecraft:quartz_block" metadata="3" weight="33" />
|
||||
<filler block="minecraft:quartz_block" metadata="4" weight="33" />
|
||||
<filler block="minecraft:iron_block" ratio="0.005" />
|
||||
<filler block="enderio:block_alloy" metadata="0" ratio="0.001" mods="enderio" /><!-- Electrical steel block -->
|
||||
<filler block="minecraft:iron_block" ratio="0.005" />
|
||||
<filler block="enderio:block_alloy" metadata="0" ratio="0.001" mods="enderio" /><!-- Electrical steel block -->
|
||||
</fillerSet>
|
||||
<!-- TODO: add GT granite cores -->
|
||||
<!-- TODO: add TE/EIO block of sort -->
|
||||
|
||||
</worldGeneration>
|
||||
|
|
|
@ -14,22 +14,19 @@
|
|||
</fillerSet>
|
||||
|
||||
<fillerSet group="undergroundBiomes_commonOres" name="%type%@%metadata%">
|
||||
<import group="overworld_commonOres" name="allButVanilla" />
|
||||
<filler block="undergroundbiomes:%type%_stone_coal_ore" metadata="%metadata%" ratio=".06" />
|
||||
<filler block="undergroundbiomes:%type%_stone_iron_ore" metadata="%metadata%" ratio=".04" />
|
||||
<filler block="undergroundbiomes:%type%_stone_redstone_ore" metadata="%metadata%" ratio=".008" mods="!thermalfoundation" />
|
||||
<filler block="undergroundbiomes:%type%_stone_redstone_ore" metadata="%metadata%" ratio=".002" mods="thermalfoundation" />
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.redstone.name" metadata="%metadata%" ratio=".006" mods="thermalfoundation" /><!-- Destabilized redstone -->
|
||||
<filler block="undergroundbiomes:%type%_stone_arsmagica2:ores" metadata="%metadata%" ratio=".024" mods="arsmagica2" /><!-- Vinteum -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_appliedenergistics2_quartz_ore" metadata="%metadata%" ratio=".008" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="undergroundbiomes:%type%_stone_arsmagica2:ores" metadata="%metadata%" ratio=".024" mods="arsmagica2" /><!-- Vinteum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ebwizardry_crystal_ore" metadata="%metadata%" ratio=".024" mods="ebwizardry" /><!-- Magic Crystal -->
|
||||
<filler block="undergroundbiomes:%type%_stone_evilcraft_dark_ore" metadata="%metadata%" ratio=".016" mods="evilcraft" /><!-- Dark gem -->
|
||||
<filler block="undergroundbiomes:%type%_stone_voltzengine:veStoneOre.1" metadata="%metadata%" ratio=".048" mods="voltzengine" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_voltzengine:veStoneOre" metadata="%metadata%" ratio=".032" mods="voltzengine" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_voltzengine:veStoneOre.6" metadata="%metadata%" ratio=".024" mods="voltzengine" /><!-- Aluminum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_voltzengine:veStoneOre.3" metadata="%metadata%" ratio=".007" mods="voltzengine" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_voltzengine:veStoneOre.7" metadata="%metadata%" ratio=".006" mods="voltzengine" /><!-- Magnesium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.base.ore" metadata="%metadata%" ratio=".048" mods="Metallurgy,!voltzengine" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.base.ore.1" metadata="%metadata%" ratio=".032" mods="Metallurgy,!voltzengine" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_forestry_resources" metadata="%metadata%" ratio=".036" mods="forestry" /><!-- Apatite -->
|
||||
<filler block="LanteaCraft:blockLanteaOre" metadata="2" ratio=".008" mods="LanteaCraft" /><!-- Trinium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_mekanism_oreblock" metadata="%metadata%" ratio=".004" mods="mekanism" /><!-- Osmium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.base.ore.2" metadata="%metadata%" ratio=".008" mods="Metallurgy" /><!-- Manganese -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.fantasy.ore" metadata="%metadata%" ratio=".020" mods="Metallurgy" /><!-- Prometheum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.fantasy.ore.1" metadata="%metadata%" ratio=".012" mods="Metallurgy" /><!-- Deep Iron -->
|
||||
|
@ -41,7 +38,30 @@
|
|||
<filler block="undergroundbiomes:%type%_stone_metal.block.utility.ore.3" metadata="%metadata%" ratio=".006" mods="Metallurgy,!voltzengine" /><!-- Magnesium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.utility.ore.4" metadata="%metadata%" ratio=".006" mods="off,Metallurgy" /><!-- Bitumen -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.utility.ore.5" metadata="%metadata%" ratio=".006" mods="Metallurgy" /><!-- Potash -->
|
||||
<filler block="undergroundbiomes:%type%_stone_mekanism_oreblock" metadata="%metadata%" ratio=".004" mods="mekanism" /><!-- Osmium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_mysticalagriculture_inferium_ore" metadata="%metadata%" ratio=".012" mods="mysticalagriculture" /><!-- Inferium -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.aluminum.name" metadata="%metadata%" ratio=".032" mods="thermalfoundation" /><!-- Aluminum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_1" metadata="%metadata%" ratio=".032" mods="immersiveengineering,!thermalfoundation" /><!-- Aluminum/Bauxite -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_thermalfoundation_ore" metadata="%metadata%" ratio=".048" mods="thermalfoundation" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore" metadata="%metadata%" ratio=".048" mods="immersiveengineering,!thermalfoundation" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.for.resources.copper" metadata="%metadata%" ratio=".048" mods="mekanism,!thermalfoundation,!immersiveengineering" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.copper_ore" metadata="%metadata%" ratio=".048" mods="ic2,!thermalfoundation,!immersiveengineering,!mekanism" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_nuclearcraft_ore" metadata="%metadata%" ratio=".048" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!mekanism,!ic2" /><!-- Copper -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.for.resources.copper" metadata="%metadata%" ratio=".048" mods="forestry,!thermalfoundation,!immersiveengineering,!mekanism,!ic2,!nuclearcraft" /><!-- Copper -->
|
||||
<filler block="projectred-exploration:ore" metadata="3" ratio=".048" mods="projectred-exploration,!thermalfoundation,!immersiveengineering,!mekanism,!ic2,!nuclearcraft,!forestry" /><!-- Copper -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.lead.name" metadata="%metadata%" ratio=".024" mods="thermalfoundation" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_2" metadata="%metadata%" ratio=".024" mods="immersiveengineering,!thermalfoundation" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.lead_ore" metadata="%metadata%" ratio=".024" mods="ic2,!thermalfoundation,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.lead" metadata="%metadata%" ratio=".024" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!ic2" /><!-- Lead -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.tin.name" metadata="%metadata%" ratio=".032" mods="thermalfoundation" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_mekanism_oreblock_2" metadata="%metadata%" ratio=".032" mods="mekanism,!thermalfoundation" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.tin_ore" metadata="%metadata%" ratio=".032" mods="ic2,!thermalfoundation,!mekanism" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.tin" metadata="%metadata%" ratio=".032" mods="nuclearcraft,!thermalfoundation,!mekanism,!ic2" /><!-- Tin -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.for.resources.tin" metadata="%metadata%" ratio=".032" mods="forestry,!thermalfoundation,!mekanism,!ic2,!nuclearcraft" /><!-- Tin -->
|
||||
<filler block="projectred-exploration:ore" metadata="4" ratio=".032" mods="projectred-exploration,!thermalfoundation,!mekanism,!ic2,!nuclearcraft,!forestry" /><!-- Tin -->
|
||||
</fillerSet>
|
||||
|
||||
|
||||
|
@ -52,30 +72,46 @@
|
|||
</fillerSet>
|
||||
|
||||
<fillerSet group="undergroundBiomes_uncommonOres" name="%type%@%metadata%">
|
||||
<import group="overworld_uncommonOres" name="allButVanilla" />
|
||||
<filler block="undergroundbiomes:%type%_stone_redstone_ore" metadata="%metadata%" ratio=".008" mods="!thermalfoundation" />
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.redstone.name" metadata="%metadata%" ratio=".008" />
|
||||
<filler block="undergroundbiomes:%type%_stone_gold_ore" metadata="%metadata%" ratio=".010" />
|
||||
<filler block="undergroundbiomes:%type%_stone_lapis_ore" metadata="%metadata%" ratio=".008" />
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_appliedenergistics2_quartz_ore" metadata="%metadata%" ratio=".010" mods="appliedenergistics2" /><!-- Certus quartz -->
|
||||
<filler block="undergroundbiomes:%type%_stone_appliedenergistics2_charged_quartz_ore" metadata="%metadata%" ratio=".004" mods="appliedenergistics2" /><!-- Charged Certus quartz -->
|
||||
<filler block="undergroundbiomes:%type%_arsmagica2:ores.1" metadata="%metadata%" ratio=".006" mods="arsmagica2" /><!-- Chimerite -->
|
||||
<filler block="undergroundbiomes:%type%_voltzengine:veStoneOre.5" metadata="%metadata%" ratio=".015" mods="voltzengine" /><!-- Nickel -->
|
||||
<filler block="undergroundbiomes:%type%_voltzengine:veStoneOre.4" metadata="%metadata%" ratio=".015" mods="voltzengine" /><!-- Zinc -->
|
||||
<filler block="undergroundbiomes:%type%_voltzengine:veStoneOre.3" metadata="%metadata%" ratio=".015" mods="voltzengine" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_voltzengine:veStoneOre.2" metadata="%metadata%" ratio=".015" mods="voltzengine" /><!-- Silver -->
|
||||
<filler block="undergroundbiomes:%type%_stone_techguns_basicore.3-nottested" metadata="%metadata%" ratio=".008" mods="techguns" /><!-- Titanium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_4" metadata="%metadata%" ratio=".015" mods="immersiveengineering,!voltzengine" /><!-- Nickel -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.5" metadata="%metadata%" ratio=".008" mods="Metallurgy" /><!-- Astral Silver -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.6" metadata="%metadata%" ratio=".0064" mods="Metallurgy" /><!-- Carmot -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.7" metadata="%metadata%" ratio=".0064" mods="Metallurgy" /><!-- Mithril -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.8" metadata="%metadata%" ratio=".004" mods="Metallurgy" /><!-- Rubracium -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.precious.ore" metadata="%metadata%" ratio=".015" mods="Metallurgy,!voltzengine" /><!-- Zinc -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.precious.ore.1" metadata="%metadata%" ratio=".015" mods="Metallurgy,!voltzengine" /><!-- Silver -->
|
||||
<filler block="undergroundbiomes:%type%_stone_arsmagica2:ores.1" metadata="%metadata%" ratio=".006" mods="arsmagica2" /><!-- Chimerite -->
|
||||
<filler block="undergroundbiomes:%type%_stone_deepresonance_resonating_ore" metadata="%metadata%" ratio=".001" mods="deepresonance" /><!-- Resonating -->
|
||||
<filler block="undergroundbiomes:%type%_stone_mekanism_oreblock" metadata="%metadata%" ratio=".010" mods="mekanism" /><!-- Osmium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.uranium_ore" metadata="%metadata%" ratio=".001" mods="ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_5" metadata="%metadata%" ratio=".001" mods="immersiveengineering,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_bigreactors_brore" metadata="%metadata%" ratio=".001" mods="bigreactors,!immersiveengineering,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.fantasy.ore.5" metadata="%metadata%" ratio=".008" mods="Metallurgy" /><!-- Astral Silver -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.fantasy.ore.6" metadata="%metadata%" ratio=".0064" mods="Metallurgy" /><!-- Carmot -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.fantasy.ore.8" metadata="%metadata%" ratio=".004" mods="Metallurgy" /><!-- Rubracium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_metal.block.precious.ore" metadata="%metadata%" ratio=".015" mods="Metallurgy" /><!-- Zinc -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.thorium" metadata="%metadata%" ratio=".002" mods="nuclearcraft" /><!-- Thorium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.boron" metadata="%metadata%" ratio=".004" mods="nuclearcraft" /><!-- Boron -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.lithium" metadata="%metadata%" ratio=".003" mods="nuclearcraft" /><!-- Lithium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.magnesium" metadata="%metadata%" ratio=".006" mods="nuclearcraft" /><!-- Magnesium -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.lead.name" metadata="%metadata%" ratio=".015" mods="thermalfoundation" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_2" metadata="%metadata%" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.lead_ore" metadata="%metadata%" ratio=".015" mods="ic2,!thermalfoundation,!immersiveengineering" /><!-- Lead -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.lead" metadata="%metadata%" ratio=".015" mods="nuclearcraft,!thermalfoundation,!immersiveengineering,!ic2" /><!-- Lead -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.mithril.name" metadata="%metadata%" ratio=".0064" mods="thermalfoundation" /><!-- Mana infused/Mithril -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.nickel.name" metadata="%metadata%" ratio=".015" mods="thermalfoundation" /><!-- Ferrous/Nickel -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_4" metadata="%metadata%" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Nickel -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.thermalfoundation.ore.silver.name" metadata="%metadata%" ratio=".015" mods="thermalfoundation" /><!-- Silver -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_3" metadata="%metadata%" ratio=".015" mods="immersiveengineering,!thermalfoundation" /><!-- Silver -->
|
||||
<filler block="projectred-exploration:ore" metadata="5" ratio=".015" mods="projectred-exploration,!thermalfoundation,!immersiveengineering" /><!-- Silver -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_material.rutile" metadata="%metadata%" ratio=".008" mods="libvulpes" /><!-- Titanium/Rutile -->
|
||||
<filler block="techguns:basicore" metadata="3" ratio=".008" mods="techguns,!libvulpes" /><!-- Titanium -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.uranium_ore" metadata="%metadata%" ratio=".001" mods="ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.uranium" metadata="%metadata%" ratio=".002" mods="nuclearcraft,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_5" metadata="%metadata%" ratio=".001" mods="immersiveengineering,!ic2,!nuclearcraft" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_bigreactors_brore" metadata="%metadata%" ratio=".001" mods="bigreactors,!ic2,!nuclearcraft,!immersiveengineering" /><!-- Uranium -->
|
||||
</fillerSet>
|
||||
|
||||
<!-- rare overworld ores with various base blocks -->
|
||||
|
@ -83,24 +119,62 @@
|
|||
<import group="undergroundBiomes_rareOres" name="%type%@%metadata%" />
|
||||
<filler block="undergroundbiomes:%type%_stone" metadata="%metadata%" weight="100" />
|
||||
</fillerSet>
|
||||
|
||||
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="emerald" weight="10">
|
||||
<filler block="undergroundbiomes:%type%_stone_emerald_ore" metadata="%metadata%" ratio=".001" />
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="ruby" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.ruby_ore" metadata="%metadata%" ratio=".001" /><!-- Ruby -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="peridot" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.peridot_ore" metadata="%metadata%" ratio=".001" /><!-- Peridot -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="topaz" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.topaz_ore" metadata="%metadata%" ratio=".001" /><!-- Topaz -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="tanzanite" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.tanzanite_ore" metadata="%metadata%" ratio=".001" /><!-- Tanzanite -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="malachite" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.malachite_ore" metadata="%metadata%" ratio=".001" /><!-- Malachite -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="sapphire" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.sapphire_ore" metadata="%metadata%" ratio=".001" /><!-- Sapphire -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="amber" weight="10" mods="biomesoplenty">
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.gem_ore.amber_ore" metadata="%metadata%" ratio=".001" /><!-- Amber -->
|
||||
</fillerSet>
|
||||
<fillerSet group="undergroundBiomes_rareGems.%type%@%metadata%" name="none" ratio="0.10"><!-- slight chance of no gems -->
|
||||
<filler block="minecraft:stone" metadata="0" ratio=".00000001" /><!-- negligeable ratio -->
|
||||
</fillerSet>
|
||||
|
||||
<fillerSet group="undergroundBiomes_rareOres" name="%type%@%metadata%">
|
||||
<import group="overworld_rareOres" name="allButVanilla" />
|
||||
<filler block="undergroundbiomes:%type%_stone_gold_ore" metadata="%metadata%" ratio=".004" />
|
||||
<filler block="undergroundbiomes:%type%_stone_diamond_ore" metadata="%metadata%" ratio=".004" />
|
||||
<filler block="undergroundbiomes:%type%_stone_emerald_ore" metadata="%metadata%" ratio=".001" />
|
||||
<import group="undergroundBiomes_rareGems.%type%@%metadata%" /><!-- add a random gem, don't mix them in the same volume -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_appliedenergistics2_charged_quartz_ore" metadata="%metadata%" ratio=".005" mods="appliedenergistics2" /><!-- Charged certus quartz -->
|
||||
<filler block="undergroundbiomes:%type%_arsmagica2:ores.2" metadata="%metadata%" ratio=".008" mods="arsmagica2" /><!-- Blue topaz -->
|
||||
<filler block="undergroundbiomes:%type%_voltzengine:veStoneOre.9" metadata="%metadata%" ratio=".006" mods="voltzengine" /><!-- Platinum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_techguns_basicore.3-nottested" metadata="%metadata%" ratio=".006" mods="techguns" /><!-- Titanium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_draconicevolution_draconium_ore" metadata="%metadata%" ratio="0.004" mods="off,draconicevolution" /><!-- Draconium -->
|
||||
<filler block="LanteaCraft:blockLanteaOre" metadata="1" ratio=".006" mods="LanteaCraft" /><!-- Naquadriah -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.11" metadata="%metadata%" ratio=".006" mods="Metallurgy" /><!-- Orichalcum -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.13" metadata="%metadata%" ratio=".004" mods="Metallurgy" /><!-- Adamantine -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.fantasy.ore.14" metadata="%metadata%" ratio=".004" mods="Metallurgy" /><!-- Atlarus -->
|
||||
<filler block="undergroundbiomes:%type%_metal.block.precious.ore.2" metadata="%metadata%" ratio=".006" mods="Metallurgy,!voltzengine" /><!-- Platinum -->
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.uranium_ore" metadata="%metadata%" ratio=".005" mods="ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_5" metadata="%metadata%" ratio=".005" mods="immersiveengineering,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_bigreactors_brore" metadata="%metadata%" ratio=".005" mods="bigreactors,!immersiveengineering,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.thorium" metadata="%metadata%" ratio=".015" mods="nuclearcraft" /><!-- Thorium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.boron" metadata="%metadata%" ratio=".030" mods="nuclearcraft" /><!-- Boron -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.lithium" metadata="%metadata%" ratio=".020" mods="nuclearcraft" /><!-- Lithium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.magnesium" metadata="%metadata%" ratio=".030" mods="nuclearcraft" /><!-- Magnesium -->
|
||||
<filler block="undergroundbiomes:%type%_.naquadah" metadata="%metadata%" ratio=".002" mods="StargateTech2" /><!-- Naquadah -->
|
||||
|
||||
<filler block="thermalfoundation:ore" metadata="5" ratio=".006" mods="thermalfoundation,!undergroundbiomes" /><!-- Shiny/Platinum -->
|
||||
|
||||
<filler block="libvulpes:ore0" metadata="8" ratio=".006" mods="libvulpes" /><!-- Titanium/Rutile -->
|
||||
<filler block="techguns:basicore" metadata="3" ratio=".006" mods="techguns,!libvulpes" /><!-- Titanium -->
|
||||
|
||||
<filler block="undergroundbiomes:%type%_stone_ic2.resource.uranium_ore" metadata="%metadata%" ratio=".005" mods="ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_tile.nuclearcraft.ore.uranium" metadata="%metadata%" ratio=".005" mods="nuclearcraft,!ic2" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_immersiveengineering_ore_5" metadata="%metadata%" ratio=".005" mods="immersiveengineering,!ic2,!nuclearcraft" /><!-- Uranium -->
|
||||
<filler block="undergroundbiomes:%type%_stone_bigreactors_brore" metadata="%metadata%" ratio=".005" mods="bigreactors,!ic2,!nuclearcraft,!immersiveengineering" /><!-- Uranium/Yellorite -->
|
||||
</fillerSet>
|
||||
|
||||
<!-- assorted overworld surface blocks -->
|
||||
|
|
|
@ -303,7 +303,7 @@
|
|||
<shell name="mantle" minThickness="10" maxThickness="25">
|
||||
<import group="end" />
|
||||
<filler block="minecraft:obsidian" weight="60" />
|
||||
<filler block="undergroundbiomes:metamorphic_stone" metadata="2" ratio="0.05" /><!-- Marble -->
|
||||
<filler block="undergroundbiomes:metamorphic_stone" metadata="2" ratio="0.05" mods="undergroundbiomes" /><!-- Marble -->
|
||||
<filler block="minecraft:bedrock" ratio=".001" />
|
||||
</shell>
|
||||
<shell name="surface" minThickness="2" maxThickness="3">
|
||||
|
@ -313,18 +313,18 @@
|
|||
|
||||
|
||||
|
||||
<for variable="gasMetadata" in="0,1,2,3,4,5,6,7,8,9,10,11">
|
||||
<structure group="gascloud" name="bigCloud_%gasMetadata%" weight="1">
|
||||
<for variable="metadataGas" in="0,1,2,3,4,5,6,7,8,9,10,11">
|
||||
<structure group="gascloud" name="bigCloud_%metadataGas%" weight="1">
|
||||
<metashell block="minecraft:glowstoneOff" minCount="10" maxCount="16" minRadius="5" relativeRadius="0.5" />
|
||||
<shell name="mantle" minThickness="5" maxThickness="15">
|
||||
<filler weight="1" block="warpdrive:gas" metadata="%gasMetadata%" />
|
||||
<filler weight="1" block="warpdrive:gas" metadata="%metadataGas%" />
|
||||
</shell>
|
||||
</structure>
|
||||
|
||||
<structure group="gascloud" name="smallCloud_%gasMetadata%" weight="1">
|
||||
<structure group="gascloud" name="smallCloud_%metadataGas%" weight="1">
|
||||
<metashell block="minecraft:glowstoneOff" minCount="3" maxCount="7" minRadius="3" relativeRadius="0.5" />
|
||||
<shell name="mantle" minThickness="2" maxThickness="8">
|
||||
<filler weight="1" block="warpdrive:gas" metadata="%gasMetadata%" />
|
||||
<filler weight="1" block="warpdrive:gas" metadata="%metadataGas%" />
|
||||
</shell>
|
||||
</structure>
|
||||
</for>
|
||||
|
|
|
@ -7,38 +7,38 @@
|
|||
<structure group="ship_small" name="legacy" weight="1">
|
||||
<schematic filename="legacy" weight="1" />
|
||||
<replacement blockState="minecraft:stone">
|
||||
<import group="hull_plain" name="%hull1%" />
|
||||
<import group="hull_plain" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:glass">
|
||||
<import group="hull_glass" name="%hull1%" />
|
||||
<import group="hull_glass" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:sandstone">
|
||||
<import group="hull_plain" name="%hull2%" />
|
||||
<replacement blockState="minecraft:fence">
|
||||
<import group="ship_wiring" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:stained_glass">
|
||||
<import group="hull_glass" name="%hull2%" />
|
||||
<replacement blockState="minecraft:sponge">
|
||||
<import group="ship_solarPanel" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:wool@color=red">
|
||||
<for variable="colorMetadata" in="0,1,2,3,4,5,6,8">
|
||||
<filler block="minecraft:wool" metadata="%colorMetadata%" weight="1" />
|
||||
<for variable="metadataWoolRed" in="0,1,2,3,4,5,6,8">
|
||||
<filler block="minecraft:wool" metadata="%metadataWoolRed%" weight="1" />
|
||||
</for>
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:wool@color=silver">
|
||||
<for variable="colorMetadata" in="7,9,10,11,12,13,14,15,16">
|
||||
<filler block="minecraft:wool" metadata="%colorMetadata%" weight="1" />
|
||||
<for variable="metadataWoolSilver" in="7,9,10,11,12,13,14,15,16">
|
||||
<filler block="minecraft:wool" metadata="%metadataWoolSilver%" weight="1" />
|
||||
</for>
|
||||
</replacement>
|
||||
<replacement blockState="computercraft:computer">
|
||||
<filler block="computercraft:computer" weight="1" mods="computercraft" />
|
||||
<filler block="minecraft:air" ratio="0.5" />
|
||||
</replacement>
|
||||
<insertion blockState="opencomputers:case1">
|
||||
<insertion blockState="opencomputers:case1" mods="opencomputers">
|
||||
<import group="ship_computerCore" name="OpenComputers" />
|
||||
</insertion>
|
||||
<insertion blockState="opencomputers:case2">
|
||||
<insertion blockState="opencomputers:case2" mods="opencomputers">
|
||||
<import group="ship_computerCore" name="OpenComputers" />
|
||||
</insertion>
|
||||
<insertion blockState="opencomputers:diskdrive">
|
||||
<insertion blockState="opencomputers:diskdrive" mods="opencomputers">
|
||||
<import group="ship_computerFloppy" name="OpenComputers" />
|
||||
</insertion>
|
||||
</structure>
|
||||
|
@ -46,39 +46,30 @@
|
|||
<structure group="ship_small" name="legacy" weight="1">
|
||||
<schematic filename="legacy_corrupted" weight="1" />
|
||||
<replacement blockState="minecraft:stone">
|
||||
<import group="hull_plain" name="%hull1%" />
|
||||
<import group="hull_plain" />
|
||||
<filler block="minecraft:air" ratio="0.1" />
|
||||
<filler block="warpdrive:ship_corruption" ratio="0.0025" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:glass">
|
||||
<import group="hull_glass" name="%hull1%" />
|
||||
<filler block="minecraft:air" ratio="0.2" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:sandstone">
|
||||
<import group="hull_plain" name="%hull2%" />
|
||||
<filler block="minecraft:air" ratio="0.1" />
|
||||
<filler block="warpdrive:ship_corruption" ratio="0.0025" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:stained_glass">
|
||||
<import group="hull_glass" name="%hull2%" />
|
||||
<import group="hull_glass" />
|
||||
<filler block="minecraft:air" ratio="0.2" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:fence">
|
||||
<import group="cable" />
|
||||
<import group="ship_wiring" />
|
||||
<filler block="minecraft:air" ratio="0.25" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:glass">
|
||||
<import group="solar" />
|
||||
<replacement blockState="minecraft:sponge">
|
||||
<import group="ship_solarPanel" />
|
||||
<filler block="minecraft:air" ratio="0.25" />
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:wool@color=red">
|
||||
<for variable="colorMetadata" in="0,1,2,3,4,5,6,8">
|
||||
<filler block="minecraft:wool" metadata="%colorMetadata%" weight="1" />
|
||||
<for variable="metadataWoolRed" in="0,1,2,3,4,5,6,8">
|
||||
<filler block="minecraft:wool" metadata="%metadataWoolRed%" weight="1" />
|
||||
</for>
|
||||
</replacement>
|
||||
<replacement blockState="minecraft:wool@color=silver">
|
||||
<for variable="colorMetadata" in="7,9,10,11,12,13,14,15,16">
|
||||
<filler block="minecraft:wool" metadata="%colorMetadata%" weight="1" />
|
||||
<for variable="metadataWoolSilver" in="7,9,10,11,12,13,14,15,16">
|
||||
<filler block="minecraft:wool" metadata="%metadataWoolSilver%" weight="1" />
|
||||
</for>
|
||||
</replacement>
|
||||
<replacement blockState="warpdrive:ship_core.basic">
|
||||
|
@ -99,7 +90,4 @@
|
|||
</replacement>
|
||||
</structure>
|
||||
|
||||
<structure group="ship" name="legacy" ratio="0.2">
|
||||
</structure>
|
||||
|
||||
</worldGeneration>
|
||||
|
|
Loading…
Reference in a new issue