forked from kcunning/Katie-s-Rougish-PyGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added input validation to admin.py menus, and a "Quit without Save" o…
…ption.
- Loading branch information
Showing
2 changed files
with
60 additions
and
46 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,25 @@ | ||
<?xml version="1.0" ?> | ||
<items> | ||
<item> | ||
<item_type> | ||
hat | ||
</item_type> | ||
<title> | ||
Hat of Holding | ||
</title> | ||
<description> | ||
There appears to be something in here... | ||
</description> | ||
<item_type>hat</item_type> | ||
<title>Hat of Holding</title> | ||
<description>There appears to be something in here...</description> | ||
</item> | ||
<item> | ||
<item_type> | ||
weapon | ||
</item_type> | ||
<title> | ||
Breadknife of Cleaving | ||
</title> | ||
<description> | ||
Look out -- it's sharp! | ||
</description> | ||
<damage type="int"> | ||
10 | ||
</damage> | ||
<item_type>weapon</item_type> | ||
<title>Breadknife of Cleaving</title> | ||
<description>Look out -- it's sharp!</description> | ||
<damage type="int">10</damage> | ||
</item> | ||
<item> | ||
<item_type> | ||
pants | ||
</item_type> | ||
<title> | ||
Pants of Breathing | ||
</title> | ||
<description> | ||
No magical powers, but they are made of natural fibre. | ||
</description> | ||
<item_type>pants</item_type> | ||
<title>Pants of Breathing</title> | ||
<description>No magical powers, but they are made of natural fibre.</description> | ||
</item> | ||
<item> | ||
<item_type> | ||
shoes | ||
</item_type> | ||
<title> | ||
Mithral Moccasins | ||
</title> | ||
<description> | ||
Protection _and_ comfort! | ||
</description> | ||
<armor type="int"> | ||
3 | ||
</armor> | ||
<item_type>shoes</item_type> | ||
<title>Mithral Moccasins</title> | ||
<description>Protection _and_ comfort!</description> | ||
<armor type="int">3</armor> | ||
</item> | ||
</items> |