Added enums for item ability, item variety, item weapon type, and terrain special ability.

git-svn-id: http://openexile.googlecode.com/svn/trunk@43 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
2009-04-28 19:20:32 +00:00
parent 3efed5dcc7
commit ce0b3c6089
17 changed files with 307 additions and 278 deletions

View File

@@ -52,7 +52,7 @@ cItemRec get_food()
food.graphic_num = 114;
// food doesn't always appear
if (get_ran(1,0,2) != 1)
food.variety = 0;
food.variety = ITEM_TYPE_NO_ITEM;
return food;
}