Created
February 8, 2014 06:23
-
-
Save Schemetrical/8877523 to your computer and use it in GitHub Desktop.
Spokes XML 1.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xml version="1.0"> | |
<map proto="1.3.1"> | |
<name>Spokes</name> | |
<version>1.0</version> | |
<objective>Stand on the hill in the middle and capture it!</objective> | |
<authors> | |
<author>9grenier</author> | |
<author>Sbongkh</author> | |
</authors> | |
<contributors> | |
<contributor>iLifting</contributor> | |
<contributor>_IQ</contributor> | |
<contributor contribution="XML">jolteony</contributor> | |
</contributors> | |
<teams> | |
<team color="yellow" max="16">Yellow Team</team> | |
<team color="blue" max="16">Blue Team</team> | |
<team color="dark red" max="16">Red Team</team> | |
<team color="dark green" max="16">Green Team</team> | |
</teams> | |
<kits> | |
<kit name="spawn"> | |
<item slot="0" enchantment="damage all:1">stone sword</item> | |
<item slot="1">bow</item> | |
<item slot="2" amount="16">carrot</item> | |
<item slot="3">golden apple</item> | |
<item slot="28" amount="24">arrow</item> | |
<chestplate>iron chestplate</chestplate> | |
<boots>iron boots</boots> | |
<potion duration="3" amplifier="3">damage resistance</potion> | |
<potion duration="oo">night vision</potion> | |
</kit> | |
<kit name="yellow" parents="spawn"> | |
<helmet color="E5E533">leather helmet</helmet> | |
<leggings color="E5E533">leather leggings</leggings> | |
</kit> | |
<kit name="blue" parents="spawn"> | |
<helmet color="334CB2">leather helmet</helmet> | |
<leggings color="334CB2">leather leggings</leggings> | |
</kit> | |
<kit name="red" parents="spawn"> | |
<helmet color="7F3FB2">leather helmet</helmet> | |
<leggings color="7F3FB2">leather leggings</leggings> | |
</kit> | |
<kit name="green" parents="spawn"> | |
<helmet color="667F33">leather helmet</helmet> | |
<leggings color="667F33">leather leggings</leggings> | |
</kit> | |
</kits> | |
<spawns> | |
<spawn team="yellow" kit="yellow" yaw="0"> | |
<circle name="yellow-spawn" center="-1,-84" radius="2" /> | |
</spawn> | |
<spawn team="blue" kit="blue" yaw="90"> | |
<circle name="blue-spawn" center="82,-1" radius="2" /> | |
</spawn> | |
<spawn team="red" kit="red" yaw="180"> | |
<circle name="red-spawn" center="-1,82" radius="2" /> | |
</spawn> | |
<spawn team="green" kit="green" yaw="-90"> | |
<circle name="green-spawn" center="-84,-1" radius="2" /> | |
</spawn> | |
<default yaw="-90"> | |
<circle center="-1,-1" radius="3" /> | |
</default> | |
</spawns> | |
<filters> | |
<filter name="spawn-protect-yellow" parents="deny-players"> | |
<allow> | |
<team>yellow</team> | |
</allow> | |
</filter> | |
<filter name="spawn-protect-blue" parents="deny-players"> | |
<allow> | |
<team>blue</team> | |
</allow> | |
</filter> | |
<filter name="spawn-protect-red" parents="deny-players"> | |
<allow> | |
<team>red</team> | |
</allow> | |
</filter> | |
<filter name="spawn-protect-green" parents="deny-players"> | |
<allow> | |
<team>green</team> | |
</allow> | |
</filter> | |
</filters> | |
<regions> | |
<apply block="deny-all"> | |
<rectangle min="-oo" max="oo"/> | |
</apply> | |
<apply enter="spawn-protect-yellow" message="You may not enter another team's spawn!"> | |
<region name="yellow-spawn"/> | |
</apply> | |
<apply enter="spawn-protect-blue" message="You may not enter another team's spawn!"> | |
<region name="blue-spawn"/> | |
</apply> | |
<apply enter="spawn-protect-red" message="You may not enter another team's spawn!"> | |
<region name="red-spawn"/> | |
</apply> | |
<apply enter="spawn-protect-green" message="You may not enter another team's spawn!"> | |
<region name="green-spawn"/> | |
</apply> | |
</regions> | |
<king> | |
<hills> | |
<hill name="Hill" capture-time="6s" ratio="2"> | |
<capture> | |
<cuboid min="3,8,-4" max="-4,11,3"/> | |
</capture> | |
<progress> | |
<cuboid min="3,8,-4" max="-4,11,3"/> | |
</progress> | |
<captured> | |
<cuboid min="1,1,1" max="1,1,1"/> | |
</captured> | |
</hill> | |
</hills> | |
</king> | |
<score> | |
<limit>500</limit> | |
</score> | |
<toolrepair> | |
<tool>stone sword</tool> | |
<tool>bow</tool> | |
</toolrepair> | |
<itemremove> | |
<item>leather helmet</item> | |
<item>iron chestplate</item> | |
<item>leather leggings</item> | |
<item>iron boots</item> | |
<item>carrot</item> | |
<item>golden apple</item> | |
<item>arrow</item> | |
</itemremove> | |
<killreward> | |
<item>golden apple</item> | |
</killreward> | |
<timelock>on</timelock> | |
</map> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment