Skip to content

Change teams and items to attributes, make default spawn true. #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions foundation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<author uuid="75fd93dd-8e48-4698-81a2-97dae2ec5b5f"/> <!-- Pugzy -->
</authors>
<teams>
<team color="blue" id="blue-team" max="5">Blue</team>
<team color="red" id="red-team" max="5">Red</team>
<team name="Blue" color="blue" id="blue-team" max="5"/>
<team name="Red" color="red" id="red-team" max="5"/>
</teams>
<spawns>
<spawn team="blue-team" region="blue-spawn" yaw="-90" kit="default-kit"/>
<spawn team="red-team" region="red-spawn" yaw="90" kit="default-kit"/>
<default region="default-spawn" yaw="180"/>
<spawn default="true" region="default-spawn" yaw="180"/>
</spawns>
<regions>
<cylinder id="blue-spawn" base="-9.5,4,0.5" radius="0" height="0"/>
Expand All @@ -19,11 +19,11 @@
</regions>
<kits>
<kit id="default-kit">
<item slot="0">iron sword</item>
<item slot="0" material="iron sword"/>
<item slot="1" material="bow"/>
<item slot="2" material="iron pickaxe"/>
<item slot="3" amount="64">arrow</item>
<item slot="8" amount="64">cooked fish</item>
<item slot="3" material="arrow" amount="64"/>
<item slot="8" material="cooked fish" amount="64"/>
</kit>
</kits>
</map>