item_noequip.txt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. // Restricted zones - configured by 'restricted <number>' mapflag
  13. // 32 - restricted in zone 1
  14. // 64 - restricted in zone 2
  15. // 128 - restricted in zone 3
  16. // 256 - restricted in zone 4
  17. // 512 - restricted in zone 5
  18. // 1024 - restricted in zone 6
  19. // 2048 - restricted in zone 7
  20. //
  21. // Passing negative value as flag will unset the flag instead.
  22. //
  23. // Examples:
  24. // 1201,1 // Knife can't be worn on normal maps
  25. // 608,4 // Yggdrasil Seed can't be consumed in both GvG and WoE Castles
  26. // 4174,6 // Deviling Card has no effect in every PVP or GVG map, and during WoE
  27. // 501,32 // Red Potion can't be consumed on maps marked as 'restricted zone 1'
  28. // 519,322 // Milk can't be consumed in PVP and maps marked as 'restricted zone 2' or 'restricted zone 4' (256+64+2)
  29. // 519,-2 // Unset `restricted in PVP` flag from Milk. Making it usable in PVP again.
  30. //----------------------------------------------------------------------------
  31. // Normal maps
  32. //----------------------------------------------------------------------------
  33. 2483,1 //Siege_Greave
  34. 2484,1 //Siege_Boots
  35. 2485,1 //Siege_Shoes
  36. 2586,1 //Siege_Manteau
  37. 2587,1 //Siege_Muffler
  38. 15046,1 //Siege_Plate
  39. 15047,1 //Siege_Suits
  40. 15048,1 //Siege_Robe
  41. 1776,1 //Siege_Arrow_S
  42. 1775,1 //Siege_Arrow_A
  43. 1293,1 //Velum_Jamadhar
  44. 1294,1 //Velum_Scare
  45. 1395,1 //Velum_Buster
  46. 1492,1 //Velum_Glaive
  47. 2016,1 //Velum_Arc_Wand
  48. 21001,1 //Velum_Claymore
  49. 21002,1 //Velum_Katzbalger
  50. 18113,1 //Velum_Arbalest
  51. 18114,1 //Velum_CrossBow
  52. 1586,1 //Velum_Bible
  53. 1587,1 //Velum_Encyclopedia
  54. 1832,1 //Velum_Claw
  55. 13072,1 //Velum_Damascus
  56. 16020,1 //Velum_Stunner
  57. 16021,1 //Velum_Flail
  58. 1436,1 //Velum_Spear
  59. 1396,1 //Velum_Guillotine
  60. 11548,1 //Woe_White_Potion
  61. 11549,1 //Woe_Blue_Potion
  62. 11547,1 //Woe_Violet_Potion
  63. 12600,1 //Treasure_Box_Scroll
  64. //----------------------------------------------------------------------------
  65. // PVP
  66. //----------------------------------------------------------------------------
  67. 14529,2 //Greed_Scroll
  68. //----------------------------------------------------------------------------
  69. // GVG
  70. //----------------------------------------------------------------------------
  71. 12218,4 //Assumptio_5_Scroll
  72. 14529,4 //Greed_Scroll
  73. 14590,4 //Pty_Assumptio_Scroll
  74. //----------------------------------------------------------------------------
  75. // Battlegrounds
  76. //----------------------------------------------------------------------------
  77. 12218,8 //Assumptio_5_Scroll
  78. 14590,8 //Pty_Assumptio_Scroll
  79. //----------------------------------------------------------------------------
  80. // Zone 1 - Aldebaran Turbo Track
  81. //----------------------------------------------------------------------------
  82. 601,32 //Wing_Of_Fly
  83. 605,32 //Anodyne
  84. 506,32 //Green_Potion
  85. 525,32 //Panacea
  86. //----------------------------------------------------------------------------
  87. // Zone 2 - Jail
  88. //----------------------------------------------------------------------------
  89. 601,64 //Wing_Of_Fly
  90. 602,64 //Wing_Of_Butterfly
  91. 12212,64 //Giant_Fly_Wing
  92. 14582,64 //WOB_Rune
  93. 14583,64 //WOB_Schwaltz
  94. 14584,64 //WOB_Rachel
  95. 14585,64 //WOB_Local
  96. //----------------------------------------------------------------------------
  97. // Zone 3 - Izlude Battle Arena
  98. //----------------------------------------------------------------------------
  99. 601,128 //Wing_Of_Fly
  100. //----------------------------------------------------------------------------
  101. // Zone 7 - Towns
  102. //----------------------------------------------------------------------------
  103. 14529,2048 //Greed_Scroll
  104. //----------------------------------------------------------------------------
  105. // WoE TE Items - Only can be used in WoE TE maps
  106. // Assumed WOE TE maps are restricted zone 8.
  107. // TODO: &1 (Normal) is currently removed since if the map is restricted, it'll fail.
  108. //----------------------------------------------------------------------------
  109. //1299,4094 // TE_Woe_Katar
  110. //1319,4094 // TE_Woe_Axe
  111. //1399,4094 // TE_Woe_Two_Handed_Axe
  112. //1437,4094 // TE_Woe_Pike
  113. //1495,4094 // TE_Woe_Lance
  114. //1591,4094 // TE_Woe_Book
  115. //1667,4094 // TE_Woe_Staff
  116. //1834,4094 // TE_Woe_Fist
  117. //1932,4094 // TE_Woe_Guitar
  118. //1987,4094 // TE_Woe_Rope
  119. //2019,4094 // TE_Woe_Two_Hand_Staff
  120. //2178,4094 // TE_Woe_Buckler
  121. //2179,4094 // TE_Woe_Shield
  122. //2180,4094 // TE_Woe_Magic_Guard
  123. //2496,4094 // TE_Woe_Shoes
  124. //2497,4094 // TE_Woe_Boots
  125. //2498,4094 // TE_Woe_Magic_Sandal
  126. //2944,4094 // TE_Ring_Of_Protection
  127. //2945,4094 // TE_Ring_Of_Rage
  128. //2946,4094 // TE_Ring_Of_Defiance
  129. //11557,4094 // TE_White_Potion
  130. //11558,4094 // TE_White_Slim_Potion
  131. //13083,4094 // TE_Woe_Knife
  132. //13117,4094 // TE_Woe_Pistol
  133. //13184,4094 // TE_Woe_Rifle
  134. //13185,4094 // TE_Woe_Gatling
  135. //13186,4094 // TE_Woe_Shotgun
  136. //13187,4094 // TE_Woe_Grenade
  137. //13317,4094 // TE_Woe_Huuma
  138. //13439,4094 // TE_Woe_Sword
  139. //15062,4094 // TE_Woe_Coat
  140. //15063,4094 // TE_Woe_Chain_Mail
  141. //15064,4094 // TE_Woe_Mage_Coat
  142. //16025,4094 // TE_Woe_Mace
  143. //18118,4094 // TE_Woe_Bow
  144. //18732,4094 // TE_Woe_Cap
  145. //18733,4094 // TE_Woe_Bone_Helm
  146. //18734,4094 // TE_Woe_Magic_Eyes
  147. //20702,4094 // TE_Woe_Muffler
  148. //20703,4094 // TE_Woe_Manteau
  149. //20704,4094 // TE_Woe_Magic_Manteau
  150. //21006,4094 // TE_Woe_Two_Hand_Sword