Changeset 1614 for branches/games/minionsofmirth/v1/experimental/new-stuff/genesis/dialog/modquest.py
- Timestamp:
- 07/11/08 06:46:18 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/games/minionsofmirth/v1/experimental/new-stuff/genesis/dialog/modquest.py
r409 r1614 4 4 from mud.world.item import ItemSoundProfile 5 5 6 7 durSecond = 68 durMinute = durSecond * 609 durHour = durMinute * 6010 6 11 7 #--- QUEST DIALOG … … 870 866 item.desc = "A scribbled note from Shon Grimclaw to Guard Ethulutu.\\n\\nKeep this essential quest item in your inventory." 871 867 item.bitmap = "STUFF/38" 872 item.flags = RPG_ITEM_SOULBOUND 868 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 873 869 874 870 #--- Ogre Outcast Map … … 882 878 item.desc = "This note is written in the careless scribble of goblins on torn and bloodied parchment. In the senseless scribbling you notice that Guard Ethulutu cannot even spell his own name properly.\\n\\nKeep this essential quest item in your inventory." 883 879 item.bitmap = "STUFF/2" 884 item.flags = RPG_ITEM_SOULBOUND 880 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 885 881 886 882 #--- Book One Parchment … … 888 884 item.desc = "This scroll details the writings in Book One: Loom of Creation.\\n\\nKeep this essential quest item in your inventory." 889 885 item.bitmap = "STUFF/2" 890 item.flags = RPG_ITEM_SOULBOUND 886 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 891 887 892 888 #--- Fellowship of Light Insignia … … 924 920 item.desc = "This book details the emergence of a Blight Lord upon the realm.\\n\\nKeep this essential quest item in your inventory." 925 921 item.bitmap = "STUFF/64" 926 item.flags = RPG_ITEM_SOULBOUND 922 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 927 923 928 924 #--- Harp of Discord … … 950 946 item.desc = "When played, the listener's ears bleed as if pierced by tiny shards of burning glass. The melody is both frightening and chaotic.\\n\\nKeep this essential quest item in your inventory." 951 947 item.bitmap = "STUFF/20" 952 item.flags = RPG_ITEM_SOULBOUND 948 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 953 949 954 950 #--- Profane Stone … … 956 952 item.desc = "The Profane Stone will call upon the Lord Profane.\\n\\nKeep this essential quest item in your inventory." 957 953 item.bitmap = "STUFF/28" 958 item.flags = RPG_ITEM_SOULBOUND 954 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 959 955 960 956 #--- Shadow Goblet … … 962 958 item.desc = "The contents of this goblet need to be poured upon the Obelisk of Darkness in Kauldur.\\n\\nKeep this essential quest item in your inventory." 963 959 item.bitmap = "STUFF/12" 964 item.flags = RPG_ITEM_SOULBOUND 960 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 965 961 966 962 #--- Grieving Goblet … … 968 964 item.desc = "The contents of this goblet need to be poured upon the Obelisk of Sorrow in The Eldritch Temple.\\n\\nKeep this essential quest item in your inventory." 969 965 item.bitmap = "STUFF/12" 970 item.flags = RPG_ITEM_SOULBOUND 966 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 971 967 972 968 #--- Scorned Goblet … … 974 970 item.desc = "The contents of this goblet need to be poured upon the Obelisk of Hate in the Anidaen Forest.\\n\\nKeep this essential quest item in your inventory." 975 971 item.bitmap = "STUFF/12" 976 item.flags = RPG_ITEM_SOULBOUND 972 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 977 973 978 974 #--- Chilled Goblet … … 980 976 item.desc = "The contents of this goblet need to be poured upon the Obelisk of Frozen Wind on Frostbite Islands.\\n\\nKeep this essential quest item in your inventory." 981 977 item.bitmap = "STUFF/12" 982 item.flags = RPG_ITEM_SOULBOUND 978 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 983 979 984 980 #--- Darkling Beetle Pincers 985 981 item = DBItemProto(name="Darkling Beetle Pincers") 986 982 item.desc = "Sharp pincers off a Darkling Beetle." 987 item.bitmap = "STUFF/1 9"983 item.bitmap = "STUFF/122" 988 984 item.flags = RPG_ITEM_SOULBOUND 989 985 … … 1004 1000 item.desc = "This scarf seems to be burning with an electrical force. The bearer should return it as soon as possible.\\n\\nKeep this essential quest item in your inventory." 1005 1001 item.bitmap = "EQUIPMENT/NECK/2" 1006 item.flags = RPG_ITEM_SOULBOUND 1002 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 1007 1003 1008 1004 #--- Cragnik's Heart … … 1183 1179 item.desc = "\\n\\nKeep this essential quest item in your inventory." 1184 1180 item.bitmap = "EQUIPMENT/EAR/6" 1185 item.flags = RPG_ITEM_SOULBOUND 1181 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 1186 1182 1187 1183 #--- Ouxu Medallion … … 1189 1185 item.desc = "The owner of this medallion is wise in the history of Ouxu Fekrum and shares his knowledge.\\n\\nKeep this essential quest item in your inventory." 1190 1186 item.bitmap = "STUFF/63" 1191 item.flags = RPG_ITEM_SOULBOUND 1187 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 1192 1188 1193 1189 #--- Hazelbrek Horn … … 1195 1191 item.desc = "\\n\\nKeep this essential quest item in your inventory." 1196 1192 item.bitmap = "STUFF/18" 1197 item.flags = RPG_ITEM_SOULBOUND 1193 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 1198 1194 1199 1195 #--- Wooden Spoon … … 1201 1197 item.desc = "An ordinary wooden spoon.\\n\\nKeep this essential quest item in your inventory." 1202 1198 item.bitmap = "STUFF/33" 1203 item.flags = RPG_ITEM_SOULBOUND 1199 item.flags = RPG_ITEM_SOULBOUND|RPG_ITEM_QUEST 1204 1200 1205 1201 #--- NPC's

