item_noequip.txt 1.2 KB

123456789101112131415161718192021222324252627282930
  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.