43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
// Status Change Restriction Database
|
|
//
|
|
// Defines restrictions of status changes (SC).
|
|
// Disabled SC will always be removed or fail to be inflicted on this map.
|
|
//
|
|
// Structure of Database:
|
|
// SCType,Flag
|
|
//
|
|
// Legend for 'Flag' field (bitmask):
|
|
// 1 - restricted in normal maps
|
|
// 2 - restricted in PVP
|
|
// 4 - restricted in GVG
|
|
// 8 - restricted in Battlegrounds
|
|
// 16 - restricted in WOE:TE castles
|
|
// Restricted zones - configured by 'restricted <number>' mapflag
|
|
// 32 - restricted in zone 1
|
|
// 64 - restricted in zone 2
|
|
// 128 - restricted in zone 3
|
|
// 256 - restricted in zone 4
|
|
// 512 - restricted in zone 5
|
|
// 1024 - restricted in zone 6
|
|
// 2048 - restricted in zone 7
|
|
// 4096 - restricted in zone 8
|
|
//
|
|
// Example:
|
|
// SC_ENDURE,4 // Endure status will be removed when the player enters GvG and WoE Castle maps; Also cannot be inflicted again.
|
|
|
|
//----------------------------------------------------------------------------
|
|
// Disabled/Removed statuses in WoE:TE Castles (16)
|
|
//----------------------------------------------------------------------------
|
|
SC_ENDURE,16
|
|
SC_SAVAGE_STEAK,16
|
|
SC_COCKTAIL_WARG_BLOOD,16
|
|
SC_MINOR_BBQ,16
|
|
SC_SIROMA_ICE_TEA,16
|
|
SC_DROCERA_HERB_STEAMED,16
|
|
SC_PUTTI_TAILS_NOODLES,16
|
|
SC_STOMACHACHE,16
|
|
SC_VITATA_500,16
|
|
SC_EXTRACT_SALAMINE_JUICE,16
|
|
// !TODO: All 3rd Class skill's effects
|
|
SC_SECRAMENT,16
|