Added new example xml files
None of these will work probably because the names are wrong
This commit is contained in:
parent
3f48734c05
commit
c10847db1c
7 changed files with 91 additions and 25 deletions
10
src/main/resources/config/ores-ae2.xml
Normal file
10
src/main/resources/config/ores-ae2.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
|
||||
<ModRequirements>
|
||||
<mod>ae2</mod>
|
||||
</ModRequirements>
|
||||
|
||||
<ore name="ae2:quartz" weight="70" category="uncommonOre" />
|
||||
|
||||
</warpdriveWorldGeneration>
|
30
src/main/resources/config/ores-default.xml
Normal file
30
src/main/resources/config/ores-default.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
<ore name="minecraft:coal_ore" weight="100" category="commonOre" />
|
||||
<ore name="minecraft:iron_ore" weight="70" category="commonOre" />
|
||||
|
||||
|
||||
<ore name="minecraft:redstone_ore" weight="40" category="uncommonOre" />
|
||||
|
||||
<ore name="minecraft:gold_ore" weight="20" category="rareOre" />
|
||||
<ore name="minecraft:diamond_ore" weight="10" category="rareOre" />
|
||||
<ore name="minecraft:lapis_ore" weight="15" category="rareOre" />
|
||||
<ore name="minecraft:emerald_ore" weight="15" category="rareOre" />
|
||||
<ore name="warpdrive:iridiumBlock" weight="1" category="rareOre" />
|
||||
|
||||
<ore name="minecraft:stone" weight="200" category="overworld" />
|
||||
<ore name="minecraft:sand" weight="30" category="overworld" />
|
||||
<ore name="minecraft:dirt" weight="50" category="overworld" />
|
||||
|
||||
<ore name="minecraft:end_stone" weight="200" category="end" />
|
||||
<ore name="minecraft:sand" weight="20" category="end" />
|
||||
<ore name="minecraft:obsidian" weight="20" category="end" />
|
||||
|
||||
<ore name="minecraft:netherrack" weight="300" category="nether" />
|
||||
<ore name="minecraft:quartz_ore" weight="20" category="nether" />
|
||||
<ore name="minecraft:glowstone" weight="40" category="nether" />
|
||||
|
||||
|
||||
|
||||
|
||||
</warpdriveWorldGeneration>
|
13
src/main/resources/config/ores-ic2.xml
Normal file
13
src/main/resources/config/ores-ic2.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
|
||||
<ModRequirements>
|
||||
<mod>ic2</mod>
|
||||
</ModRequirements>
|
||||
|
||||
<ore name="ic2:tin_ore" weight="70" category="commonOre" />
|
||||
<ore name="ic2:copper_ore" weight="70" category="commonOre" />
|
||||
|
||||
<ore name="ic2:platinum_ore" weight="20" category="rareOre" />
|
||||
|
||||
</warpdriveWorldGeneration>
|
14
src/main/resources/config/ores-netherores.xml
Normal file
14
src/main/resources/config/ores-netherores.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
|
||||
<ModRequirements>
|
||||
<mod>netherores</mod>
|
||||
</ModRequirements>
|
||||
|
||||
<ore name="netherores:nether_coal" weight="50" category="nether" />
|
||||
<ore name="netherores:nether_iron" weight="40" category="nether" />
|
||||
<ore name="netherores:nether_redstone" weight="30" category="nether" />
|
||||
<ore name="netherores:nether_lapis" weight="15" category="nether" />
|
||||
<ore name="netherores:nether_diamond" weight="5" category="nether" />
|
||||
|
||||
</warpdriveWorldGeneration>
|
|
@ -18,28 +18,18 @@
|
|||
</structure>
|
||||
|
||||
<structure type="moon" name="theMoon" radius="20" maxScaling="2.0">
|
||||
<shell name="core" radiusInner="1" radiusOuter="5" ores="rare">
|
||||
<block weight="1">minecraft:iron_block</block>
|
||||
<shell name="core" radiusInner="1" radiusOuter="5" filler="rareOres">
|
||||
<block weight="100">minecraft:iron_block</block>
|
||||
</shell>
|
||||
|
||||
<shell name="mantle" radiusInner="6" radiusOuter="20" ores="common">
|
||||
<shell name="mantle" radiusInner="6" radiusOuter="20" filler="commonOres;uncommonOres">
|
||||
<block weight="10">minecraft:stone</block>
|
||||
<block weight="3">minecraft:clay</block>
|
||||
</shell>
|
||||
|
||||
<shell name="surface" radiusInner="21" radiusOuter="30" filler="overworld;commonOres">
|
||||
<block weight="3">minecraft:clay</block>
|
||||
</shell>
|
||||
</structure>
|
||||
|
||||
<strate name="overworld">
|
||||
<filler weight="1" normal="minecraft:stone" corrupted="minecraft:cobblestone" />
|
||||
<filler weight="3" normal="minecraft:clay" corrupted="minecraft:hardened_clay" />
|
||||
<ore weight="4">minecraft:iron_ore</ore>
|
||||
<ore weight="4">minecraft:gold_ore</ore>
|
||||
</strate>
|
||||
|
||||
<strate name="overworld">
|
||||
<filler weight="1" normal="minecraft:stone" corrupted="minecraft:cobblestone" />
|
||||
<filler weight="3" normal="minecraft:clay" corrupted="minecraft:hardened_clay" />
|
||||
<ore weight="4">minecraft:iron_ore</ore>
|
||||
<ore weight="4">minecraft:gold_ore</ore>
|
||||
</strate>
|
||||
|
||||
</warpdriveWorldGeneration>
|
17
src/main/resources/config/structures-netherores.xml
Normal file
17
src/main/resources/config/structures-netherores.xml
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
|
||||
<ModRequirements>
|
||||
<mod>netherores</mod>
|
||||
</ModRequirements>
|
||||
|
||||
<structure type="moon" name="netherMoon" radius="20" maxScaling="2.0">
|
||||
<shell name="core" radiusInner="1" radiusOuter="5" ores="rare">
|
||||
<block weight="100">minecraft:iron_block</block>
|
||||
</shell>
|
||||
|
||||
<shell name="mantle" radiusInner="6" radiusOuter="20" ores="nether">
|
||||
</shell>
|
||||
</structure>
|
||||
|
||||
</warpdriveWorldGeneration>
|
|
@ -1,8 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<warpdriveWorldGeneration version="1">
|
||||
<ore name="minecraft:iron_ore" weight="50" category="common" />
|
||||
<ore name="minecraft:gold_ore" weight="5" category="rare" />
|
||||
|
||||
|
||||
|
||||
</warpdriveWorldGeneration>
|
Loading…
Add table
Reference in a new issue