item_noequip.txt 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. // Forbidden Items Database
  2. // Defines restrictions on equipment, items, and cards in map types and zones.
  3. //
  4. // Structure of Database:
  5. // ItemID,Flag
  6. //
  7. // Legend for 'Flag' field (bitmask):
  8. // 1 - restricted in normal maps
  9. // 2 - restricted in PVP
  10. // 4 - restricted in GVG
  11. // 8 - restricted in Battlegrounds
  12. // 16 - restricted in WOE:TE castles
  13. // Restricted zones - configured by 'restricted <number>' mapflag
  14. // 32 - restricted in zone 1
  15. // 64 - restricted in zone 2
  16. // 128 - restricted in zone 3
  17. // 256 - restricted in zone 4
  18. // 512 - restricted in zone 5
  19. // 1024 - restricted in zone 6
  20. // 2048 - restricted in zone 7
  21. // 4096 - restricted in zone 8
  22. // 8192 - restricted in zone 9
  23. //
  24. // Passing negative value as flag will unset the flag instead.
  25. //
  26. // Examples:
  27. // 1201,1 // Knife can't be worn on normal maps
  28. // 608,4 // Yggdrasil Seed can't be consumed in both GvG and WoE Castles
  29. // 4174,6 // Deviling Card has no effect in every PVP or GVG map, and during WoE
  30. // 501,32 // Red Potion can't be consumed on maps marked as 'restricted zone 1'
  31. // 519,322 // Milk can't be consumed in PVP and maps marked as 'restricted zone 2' or 'restricted zone 4' (256+64+2)
  32. // 519,-2 // Unset `restricted in PVP` flag from Milk. Making it usable in PVP again.
  33. //----------------------------------------------------------------------------
  34. // Normal maps
  35. //----------------------------------------------------------------------------
  36. 2483,1 // Siege_Greave
  37. 2484,1 // Siege_Boots
  38. 2485,1 // Siege_Shoes
  39. 2586,1 // Siege_Manteau
  40. 2587,1 // Siege_Muffler
  41. 15046,1 // Siege_Plate
  42. 15047,1 // Siege_Suits
  43. 15048,1 // Siege_Robe
  44. 1776,1 // Siege_Arrow_S
  45. 1775,1 // Siege_Arrow_A
  46. 1293,1 // Velum_Jamadhar
  47. 1294,1 // Velum_Scare
  48. 1395,1 // Velum_Buster
  49. 1492,1 // Velum_Glaive
  50. 2016,1 // Velum_Arc_Wand
  51. 21001,1 // Velum_Claymore
  52. 21002,1 // Velum_Katzbalger
  53. 18113,1 // Velum_Arbalest
  54. 18114,1 // Velum_CrossBow
  55. 1586,1 // Velum_Bible
  56. 1587,1 // Velum_Encyclopedia
  57. 1832,1 // Velum_Claw
  58. 13072,1 // Velum_Damascus
  59. 16020,1 // Velum_Stunner
  60. 16021,1 // Velum_Flail
  61. 1436,1 // Velum_Spear
  62. 1396,1 // Velum_Guillotine
  63. 11548,1 // Woe_White_Potion
  64. 11549,1 // Woe_Blue_Potion
  65. 11547,1 // Woe_Violet_Potion
  66. 12600,1 // Treasure_Box_Scroll
  67. //----------------------------------------------------------------------------
  68. // PVP
  69. //----------------------------------------------------------------------------
  70. 14529,2 // Greed_Scroll
  71. //----------------------------------------------------------------------------
  72. // GVG
  73. //----------------------------------------------------------------------------
  74. 605,4 // Anodyne
  75. 12218,4 // Assumptio_5_Scroll
  76. 14529,4 // Greed_Scroll
  77. 14590,4 // Pty_Assumptio_Scroll
  78. //----------------------------------------------------------------------------
  79. // Battlegrounds
  80. //----------------------------------------------------------------------------
  81. 12218,8 // Assumptio_5_Scroll
  82. 14590,8 // Pty_Assumptio_Scroll
  83. //----------------------------------------------------------------------------
  84. // CANNOT be consumed/equipped in WoE:TE Castles (16)
  85. //----------------------------------------------------------------------------
  86. // Krieger Gear
  87. 1187,16 // Krieger_Twohand_Sword1
  88. 1281,16 // Krieger_Katar1
  89. 1282,16 // Krieger_Katar2
  90. 1310,16 // Krieger_Onehand_Axe1
  91. 1382,16 // Krieger_Twohand_Axe1
  92. 1426,16 // Krieger_Onehand_Spear1
  93. 1486,16 // Krieger_Twohand_Spear1
  94. 1546,16 // Krieger_Onehand_Mace1
  95. 1576,16 // Krieger_Book1
  96. 1577,16 // Krieger_Book2
  97. 1640,16 // Krieger_Onehand_Staff1
  98. 1641,16 // Krieger_Onehand_Staff2
  99. 1743,16 // Krieger_Bow1
  100. 1826,16 // Krieger_Knuckle1
  101. 1827,16 // Krieger_Knuckle2
  102. 1927,16 // Krieger_Instrument1
  103. 1981,16 // Krieger_Whip1
  104. 2002,16 // Krieger_Twohand_Staff1
  105. 2394,16 // Krieger_Suit1
  106. 2395,16 // Krieger_Suit2
  107. 2396,16 // Krieger_Suit3
  108. 2444,16 // Krieger_Shoes1
  109. 2445,16 // Krieger_Shoes2
  110. 2446,16 // Krieger_Shoes3
  111. 2549,16 // Krieger_Muffler1
  112. 2772,16 // Krieger_Ring1
  113. 2773,16 // Krieger_Ring2
  114. 2774,16 // Krieger_Ring3
  115. 13042,16 // Krieger_Dagger1
  116. 13110,16 // Krieger_Pistol1
  117. 13176,16 // Krieger_Rifle1
  118. 13177,16 // Krieger_Gatling1
  119. 13178,16 // Krieger_Shotgun1
  120. 13179,16 // Krieger_Launcher1
  121. 13307,16 // Krieger_Huuma_Shuriken1
  122. 13416,16 // Krieger_Onehand_Sword1
  123. 13417,16 // Krieger_Onehand_Sword2
  124. 13418,16 // Krieger_Onehand_Sword3
  125. 28918,16 // Shield_of_Chaos
  126. // Vellum Gear
  127. 1293,16 // Velum_Jamadhar
  128. 1294,16 // Velum_Scare
  129. 1395,16 // Velum_Buster
  130. 1396,16 // Velum_Guillotine
  131. 1436,16 // Velum_Spear
  132. 1492,16 // Velum_Glaive
  133. 1586,16 // Velum_Bible
  134. 1587,16 // Velum_Encyclopedia
  135. 1832,16 // Velum_Claw
  136. 2016,16 // Velum_Arc_Wand
  137. 13072,16 // Velum_Damascus
  138. 16020,16 // Velum_Stunner
  139. 16021,16 // Velum_Flail
  140. 18113,16 // Velum_Arbalest
  141. 18114,16 // Velum_CrossBow
  142. 21001,16 // Velum_Claymore
  143. 21002,16 // Velum_Katzbalger
  144. // Siege Gear
  145. 1775,16 // Siege_Arrow_A
  146. 1776,16 // Siege_Arrow_S
  147. 2483,16 // Siege_Greave
  148. 2484,16 // Siege_Boots
  149. 2485,16 // Siege_Shoes
  150. 2586,16 // Siege_Manteau
  151. 2587,16 // Siege_Muffler
  152. 15046,16 // Siege_Plate
  153. 15047,16 // Siege_Suits
  154. 15048,16 // Siege_Robe
  155. // God Items
  156. 1530,16 // Mjolnir
  157. 2383,16 // Brynhild
  158. 2410,16 // Sleipnir
  159. 2541,16 // Asprika
  160. 2629,16 // Magingiorde
  161. 2630,16 // Brysinggamen
  162. 7058,16 // Gullraifnir
  163. // Misc
  164. 605,16 // Anodyne
  165. 2365,16 // Orleans_Gown
  166. 4077,16 // Phen_Card
  167. 4128,16 // Golden_Bug_Card
  168. 4198,16 // Maya_Puple_Card
  169. 4327,16 // Blood_Butterfly_Card
  170. 11503,16 // Siege_White_Potion
  171. 11504,16 // Siege_Blue_Potion
  172. 11547,16 // Woe_Violet_Potion
  173. 11548,16 // Woe_White_Potion
  174. 11549,16 // Woe_Blue_Potion
  175. 12033,16 // Box_Of_Sunlight
  176. 12213,16 // Neuralizer
  177. 12218,16 // Assumptio_5_Scroll
  178. 12388,16 // Runstone_Crush
  179. 12389,16 // Runstone_Storm
  180. 12390,16 // Runstone_Millennium
  181. 12422,16 // HP_Increase_Potion_(Small)
  182. 12423,16 // HP_Increase_Potion_(Medium)
  183. 12424,16 // HP_Increase_Potion_(Large)
  184. 12425,16 // SP_Increase_Potion_(Small)
  185. 12426,16 // SP_Increase_Potion_(Medium)
  186. 12427,16 // SP_Increase_Potion_(Large)
  187. 12428,16 // Concentrated_White_Potion_Z
  188. 12429,16 // Savage_Full_Roast
  189. 12430,16 // Cocktail_Warg_Blood
  190. 12431,16 // Minor_Stew
  191. 12432,16 // Siroma_Iced_Tea
  192. 12433,16 // Drosera_Herb_Salad
  193. 12434,16 // Petite_Tail_Noodles
  194. 12435,16 // Black_Mass
  195. 12436,16 // Vitata_500
  196. 12437,16 // Concentrated_Ceromain_Soup
  197. 12580,16 // Vending_Search_Scroll
  198. 12581,16 // Vending_Search_Scroll2
  199. 12591,16 // Uni_Catalog_Bz
  200. 12600,16 // Treasure_Box_Scroll
  201. 14590,16 // Pty_Assumptio_Scroll
  202. //----------------------------------------------------------------------------
  203. // Zone 1 - Aldebaran Turbo Track
  204. //----------------------------------------------------------------------------
  205. 601,32 // Wing_Of_Fly
  206. 605,32 // Anodyne
  207. 506,32 // Green_Potion
  208. 525,32 // Panacea
  209. //----------------------------------------------------------------------------
  210. // Zone 2 - Jail
  211. //----------------------------------------------------------------------------
  212. 601,64 // Wing_Of_Fly
  213. 602,64 // Wing_Of_Butterfly
  214. 12212,64 // Giant_Fly_Wing
  215. 14582,64 // WOB_Rune
  216. 14583,64 // WOB_Schwaltz
  217. 14584,64 // WOB_Rachel
  218. 14585,64 // WOB_Local
  219. //----------------------------------------------------------------------------
  220. // Zone 3 - Izlude Battle Arena
  221. //----------------------------------------------------------------------------
  222. 601,128 // Wing_Of_Fly
  223. //----------------------------------------------------------------------------
  224. // Zone 7 - Towns
  225. //----------------------------------------------------------------------------
  226. 14529,2048 // Greed_Scroll
  227. //----------------------------------------------------------------------------
  228. // WoE:TE Items - Only can be used in WoE:TE Castles (All except &16)
  229. //----------------------------------------------------------------------------
  230. 1299,16367 // TE_Woe_Katar
  231. 1319,16367 // TE_Woe_Axe
  232. 1399,16367 // TE_Woe_Two_Handed_Axe
  233. 1437,16367 // TE_Woe_Pike
  234. 1495,16367 // TE_Woe_Lance
  235. 1591,16367 // TE_Woe_Book
  236. 1667,16367 // TE_Woe_Staff
  237. 1834,16367 // TE_Woe_Fist
  238. 1932,16367 // TE_Woe_Guitar
  239. 1987,16367 // TE_Woe_Rope
  240. 2019,16367 // TE_Woe_Two_Hand_Staff
  241. 2178,16367 // TE_Woe_Buckler
  242. 2179,16367 // TE_Woe_Shield
  243. 2180,16367 // TE_Woe_Magic_Guard
  244. 2496,16367 // TE_Woe_Shoes
  245. 2497,16367 // TE_Woe_Boots
  246. 2498,16367 // TE_Woe_Magic_Sandal
  247. 2944,16367 // TE_Ring_Of_Protection
  248. 2945,16367 // TE_Ring_Of_Rage
  249. 2946,16367 // TE_Ring_Of_Defiance
  250. 11557,16367 // TE_White_Potion
  251. 11558,16367 // TE_White_Slim_Potion
  252. 13083,16367 // TE_Woe_Knife
  253. 13117,16367 // TE_Woe_Pistol
  254. 13184,16367 // TE_Woe_Rifle
  255. 13185,16367 // TE_Woe_Gatling
  256. 13186,16367 // TE_Woe_Shotgun
  257. 13187,16367 // TE_Woe_Grenade
  258. 13317,16367 // TE_Woe_Huuma
  259. 13439,16367 // TE_Woe_Sword
  260. 15062,16367 // TE_Woe_Coat
  261. 15063,16367 // TE_Woe_Chain_Mail
  262. 15064,16367 // TE_Woe_Mage_Coat
  263. 16025,16367 // TE_Woe_Mace
  264. 18118,16367 // TE_Woe_Bow
  265. 18732,16367 // TE_Woe_Cap
  266. 18733,16367 // TE_Woe_Bone_Helm
  267. 18734,16367 // TE_Woe_Magic_Eyes
  268. 20702,16367 // TE_Woe_Muffler
  269. 20703,16367 // TE_Woe_Manteau
  270. 20704,16367 // TE_Woe_Magic_Manteau
  271. 21006,16367 // TE_Woe_Two_Hand_Sword