Skip to content

Instantly share code, notes, and snippets.

@Brottweiler
Last active December 21, 2015 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Brottweiler/6313430 to your computer and use it in GitHub Desktop.
Save Brottweiler/6313430 to your computer and use it in GitHub Desktop.
Dynamo XML
<?xml version="1.0"?>
<map proto="1.3.0">
<name>Dynamo</name>
<version>1.2</version>
<objective>Grab the wool from the enemie's wool room and place it on your victory monument.</objective>
<authors>
<author contribution="Map design and XML">Brottweiler</author>
<author contribution="Map design">xDino_Saurus</author>
</authors>
<contributors>
<contributor contribution="MapDev Server">pepsidawg00</contributor>
<contributor contribution="Keeping me sane from XML">dinner1111</contributor>
<contributor contribution="Feedback">Pandaboy999</contributor>
<contributor contribution="Feedback">TranquilSea</contributor>
<contributor contribution="Feedback">andykay18</contributor>
</contributors>
<rules>
<rule>Don't spawnkill!</rule>
<rule>Don't block off the spawns!</rule>
<rule>Don't hoard wool room supplies!</rule>
</rules>
<wools>
<wool team="blue" color="red">
<block>-76,13,40</block>
</wool>
<wool team="red" color="blue">
<block>94,13,40</block>
</wool>
</wools>
<teams>
<team color="dark red" max="12" max-overfill="16">Red Team</team>
<team color="blue" max="12" max-overfill="16">Blue Team</team>
</teams>
<kits>
<kit name="spawn">
<item slot="0">stone sword</item>
<item slot="1" enchantment="arrow infinite:1">bow</item>
<item slot="2" enchantment="dig speed:1;durability:2">iron pickaxe</item>
<item slot="28">arrow</item>
<item slot="3" amount="32">carrots</item>
<item slot="4" amount="64">stone brick</item>
<item slot="5" amount="16" damage="1">wood</item>
<item slot="8" amount="4">gold nugget</item>
<potion duration="2" amplifier="1">heal</potion>
<potion duration="5">damage resistance</potion>
<chestplate enchantment="protection projectile:2">chainmail chestplate</chestplate>
<boots>iron boots</boots>
</kit>
<kit name="red" parents="spawn">
<helmet color="cd0000">leather helmet</helmet>
<leggings color="cd0000">leather leggings</leggings>
</kit>
<kit name="blue" parents="spawn">
<helmet color="0066cc">leather helmet</helmet>
<leggings color="0066cc">leather leggings</leggings>
</kit>
</kits>
<toolrepair>
<tool>stone sword</tool>
<tool>bow</tool>
<tool>iron pickaxe</tool>
</toolrepair>
<itemremove>
<item>arrow</item>
<item>carrots</item>
<item>leather helmet</item>
<item>chainmail chestplate</item>
<item>leather leggings</item>
<item>iron boots</item>
<item>stone brick</item>
<item>seeds</item>
</itemremove>
<maxbuildheight>25</maxbuildheight>
<difficulty>3</difficulty>
<filters>
<filter name="only-red" parents="deny-players deny-world deny-block">
<allow><team>red</team></allow>
<deny><block>spawner</block></deny>
</filter>
<filter name="only-blue" parents="deny-players deny-world deny-block">
<allow><team>blue</team></allow>
<deny><block>spawner</block></deny>
</filter>
</filters>
<regions>
<apply enter="only-blue" message="You may not enter the enemy team's base!">
<cuboid min="-33,40,62" max="-25,4,50"/>
<cuboid min="-25,40,18" max="-33,4,32"/>
</apply>
<apply enter="only-red" message="You may not enter the enemy team's base!">
<cuboid min="51,40,18" max="43,4,30"/>
<cuboid min="51,40,62" max="43,4,50"/>
</apply>
<apply enter="only-blue" message="You may not enter the enemy team's victory monument!">
<cuboid min="-78,15,36" max="-69,9,44"/>
</apply>
<apply enter="only-red" message="You may not enter the enemy team's victory monument!">
<cuboid min="96,15,44" max="87,9,36"/>
</apply>
<apply block="deny-all" message="You may not modify the base!">
<cuboid min="-33,40,62" max="-25,4,50"/>
<cuboid min="-25,40,18" max="-33,4,32"/>
<cuboid min="51,40,18" max="43,4,30"/>
<cuboid min="51,40,62" max="43,4,50"/>
</apply>
<apply block="deny-all" message="You may not modify the victory monument!">
<cuboid min="-78,15,36" max="-69,9,44"/>
<cuboid min="96,15,44" max="87,9,36"/>
</apply>
<apply enter="only-blue" message="You may not enter the enemy team's wool room!">
<cylinder base="-55,0,40" radius="8" height="25"/>
</apply>
<apply enter="only-red" message="You may not enter the enemy team's wool room!">
<cylinder base="73,0,40" radius="8" height="25"/>
</apply>
<apply block="only-red" enter="only-red" message="You may not modify the wool rooms!">
<cylinder base="-55,0,40" radius="8" height="25"/> <!-- Blue Wool Room -->
</apply>
<apply block="only-blue" enter="only-blue" message="You may not modify the wool rooms!">
<cylinder base="73,0,40" radius="8" height="25"/> <!-- Red Wool Room -->
</apply>
<negative>
<region name="playable"/>
</negative>
</regions>
<spawns>
<spawns team="red" kit="red">
<spawn yaw="0">
<cuboid min="48,37,23" max="46,37,20"/>
</spawn>
<spawn yaw="180">
<cuboid min="46,37,57" max="48,37,60"/>
</spawn>
</spawns>
<spawns team="blue" kit="blue">
<spawn yaw="180">
<cuboid min="-28,37,60" max="-30,37,57"/>
</spawn>
<spawn yaw="0">
<cuboid min="-30,37,20" max="-28,37,23"/>
</spawn>
</spawns>
<default yaw="180"><cuboid min="11,40,39" max="7,40,41"/></default>
</spawns>
<playable>
<region name="playable"/>
<cuboid min="-87,0,71" max="105,25,9"/>
</playable>
</map>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment